2026-02-05 00:42:25 +01:00
|
|
|
#include "ControlFlow.h"
|
|
|
|
|
|
|
|
|
|
#include "ExecutorCases.h"
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
namespace executor_cases {
|
|
|
|
|
void Hlt(CPUContext& cc){
|
2026-02-05 14:57:23 +01:00
|
|
|
std::cout << "[Instruction] hlt" << std::endl;
|
2026-02-05 00:42:25 +01:00
|
|
|
cc.m_IsHalted = true;
|
|
|
|
|
}
|
|
|
|
|
}
|