Merge pull request #7 from KallDrexx/16kb_fix

Fix 16KB roms not decompiling
This commit is contained in:
ApfelTeeSaft
2025-09-29 08:47:45 +02:00
committed by GitHub
@@ -230,7 +230,8 @@ namespace NESDecompiler.Core.Disassembly
{
try
{
ushort baseAddress = 0x8000;
// ushort baseAddress = 0x8000;
ushort baseAddress = (ushort)(0x10000 - romInfo.PRGROMSize);
while (offset < codeData.Length)
{