diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
index 7ff964b5fb..9fc4f3874f 100644
--- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
+++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj
@@ -260,7 +260,6 @@
-
diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Media/PRG.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Media/PRG.cs
deleted file mode 100644
index a3d5806af8..0000000000
--- a/BizHawk.Emulation.Cores/Computers/Commodore64/Media/PRG.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using BizHawk.Emulation.Cores.Computers.Commodore64.MOS;
-
-namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media
-{
- public static class Prg
- {
- public static void Load(Chip90611401 pla, byte[] prgFile)
- {
- var length = prgFile.Length;
- if (length <= 2)
- {
- return;
- }
-
- var addr = prgFile[0] | (prgFile[1] << 8);
- var offset = 2;
- unchecked
- {
- while (offset < length)
- {
- pla.Write(addr, prgFile[offset]);
- offset++;
- addr++;
- }
- }
- }
- }
-}