1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Weed out false PEAs.

This commit is contained in:
Thomas Harte 2022-04-19 20:34:08 -04:00
parent 4181313cc6
commit 316e9681cc

View File

@ -192,8 +192,8 @@ template <uint8_t op, bool validate> Preinstruction Predecoder<model>::validated
return Preinstruction();
}
// LEA
case OpT(Operation::LEA):
// LEA, PEA
case OpT(Operation::LEA): case OpT(Operation::PEA):
switch(original.mode<0>()) {
default: return original;