1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Fix PUSH immediate.

This commit is contained in:
Thomas Harte
2025-08-04 21:23:27 -04:00
parent 4ceab01ed4
commit 61a0f892c4
3 changed files with 6 additions and 10 deletions
+1
View File
@@ -196,6 +196,7 @@ std::pair<int, typename Decoder<model>::InstructionT> Decoder<model>::decode(
} else {
immediate(Operation::PUSH, DataSize::Byte);
operation_size_ = data_size_;
sign_extend_operand_ = true;
}
break;
case 0x6b: