1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +00:00

Add LINK and UNLINK to operand_flags.

This commit is contained in:
Thomas Harte
2022-05-03 20:51:02 -04:00
parent d3b55a74a5
commit 7d10976e08

View File

@@ -275,6 +275,7 @@ template <Model model, Operation t_operation = Operation::Undefined> uint8_t ope
case Operation::EORItoSR: case Operation::EORItoCCR: case Operation::EORItoSR: case Operation::EORItoCCR:
case Operation::Bccb: case Operation::Bccw: case Operation::Bccl: case Operation::Bccb: case Operation::Bccw: case Operation::Bccl:
case Operation::BSRb: case Operation::BSRw: case Operation::BSRl: case Operation::BSRb: case Operation::BSRw: case Operation::BSRl:
case Operation::UNLINK:
return FetchOp1; return FetchOp1;
// //
@@ -311,6 +312,7 @@ template <Model model, Operation t_operation = Operation::Undefined> uint8_t ope
case Operation::CMPb: case Operation::CMPw: case Operation::CMPl: case Operation::CMPb: case Operation::CMPw: case Operation::CMPl:
case Operation::CMPAw: case Operation::CMPAl: case Operation::CMPAw: case Operation::CMPAl:
case Operation::CHK: case Operation::CHK:
case Operation::LINKw:
return FetchOp1 | FetchOp2; return FetchOp1 | FetchOp2;
// //