5 ZEXALL tests now complete. Going to implement ALL remaining OpCOdes
This commit is contained in:
@@ -1241,6 +1241,17 @@ namespace Desktop
|
||||
mnemonic = $"LD A, (IY{sign}{d})";
|
||||
instructionLength = 3;
|
||||
}
|
||||
else if (fdOpcode == 0x84) // ADD A, IYH
|
||||
{
|
||||
|
||||
mnemonic = $"ADD A, IYH";
|
||||
instructionLength = 2;
|
||||
}
|
||||
else if (fdOpcode == 0x85) // ADD A, IYL
|
||||
{
|
||||
mnemonic = $"ADD A, IYL";
|
||||
instructionLength = 2;
|
||||
}
|
||||
else if (fdOpcode == 0x86) // ADD A, (IY+d)
|
||||
{
|
||||
sbyte dAdd = (sbyte)_memoryBus.Read((ushort)(currentPc + 2));
|
||||
|
||||
Reference in New Issue
Block a user