-Set up the disassembly decoder just like the executor.

-Disassembled opcodes up to and including 0x7.
This commit is contained in:
brandman211 2012-07-08 08:17:07 +00:00
parent 36ba018ae0
commit 778274a12d
2 changed files with 1195 additions and 4 deletions

File diff suppressed because it is too large Load Diff

View File

@ -31,10 +31,7 @@ namespace BizHawk.Emulation.CPUs.CP1610
public void Execute(int cycles)
{
byte target;
int op1;
int op2;
int temp;
int result;
int op1, op2, temp, result;
PendingCycles += cycles;
while (PendingCycles > 0)
{