Plus 3 mode fully working. Added Plus 3 keyboard

This commit is contained in:
2026-04-30 15:42:54 +01:00
parent d90537de59
commit bc2748250d
5 changed files with 67 additions and 21 deletions

View File

@@ -2472,8 +2472,8 @@ namespace Core.Cpu
SP = IY.Word;
return 10;
default:
// The Z80 Ignored Prefix Quirk!
return ExecuteOpcode(ddOpcode) + 4; // Note: You named the fetched variable 'opcode' here instead of 'ddOpcode'
// Z80 nonsense loopback bug
return ExecuteOpcode(ddOpcode) + 4;
}
}
}