Enabled SWAP. Works as expected, but the next instruction is an MVI@ that wants to read from 0x7000, which I think is made available to cartridges. Not sure where to go from here.
This commit is contained in:
parent
34c796d96d
commit
8306768c76
|
@ -252,7 +252,6 @@ namespace BizHawk.Emulation.CPUs.CP1610
|
||||||
case 0x045:
|
case 0x045:
|
||||||
case 0x046:
|
case 0x046:
|
||||||
case 0x047:
|
case 0x047:
|
||||||
throw new NotImplementedException();
|
|
||||||
dest = (byte)(opcode & 0x3);
|
dest = (byte)(opcode & 0x3);
|
||||||
dest_value = Register[dest];
|
dest_value = Register[dest];
|
||||||
lower = dest_value & 0xFF;
|
lower = dest_value & 0xFF;
|
||||||
|
|
Loading…
Reference in New Issue