mirror of
https://github.com/ApfelTeeSaft/NESDecompiler.git
synced 2026-08-26 19:33:30 +00:00
Merge pull request #7 from KallDrexx/16kb_fix
Fix 16KB roms not decompiling
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user