1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-05 04:37:41 +00:00

Add a decoder for TRAP.

This commit is contained in:
Thomas Harte 2022-04-18 08:05:33 -04:00
parent c944767554
commit 7fe0d530c1

View File

@ -352,6 +352,15 @@ template <uint8_t op, bool validate> Preinstruction Predecoder<model>::decode(ui
// TODO: more validation on the above.
//
// MARK: TRAP
//
// No further operands decoded, but note that one is somewhere in the opcode.
//
case OpT(Operation::TRAP):
return Preinstruction(operation,
AddressingMode::Quick, 0);
//
// MARK: Impossible error case.
//