Feature: Add mov_rm32_r32 instruction & more expressive execution with CPU trace

This commit is contained in:
0x221E
2026-02-05 14:57:23 +01:00
parent ac6bf8cb46
commit caadd2f706
12 changed files with 120 additions and 25 deletions

View File

@@ -6,7 +6,7 @@
namespace executor_cases {
void Hlt(CPUContext& cc){
std::cout << "Program halted!" << std::endl;
std::cout << "[Instruction] hlt" << std::endl;
cc.m_IsHalted = true;
}
}