More OpCodes - working towards ZEXALL perfection
This commit is contained in:
@@ -1285,6 +1285,16 @@ namespace Desktop
|
||||
mnemonic = $"LD (IY{sign}{d}), L";
|
||||
instructionLength = 3;
|
||||
}
|
||||
else if (fdOpcode == 0xE1)
|
||||
{
|
||||
mnemonic = "POP IY";
|
||||
instructionLength = 2;
|
||||
}
|
||||
else if(fdOpcode == 0xE5)
|
||||
{
|
||||
mnemonic = "PUSH IY";
|
||||
instructionLength = 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
mnemonic = $"FD PREFIX UNKNOWN (0x{fdOpcode:X2})";
|
||||
|
||||
Reference in New Issue
Block a user