diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-21 09:18:51 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-21 09:18:51 -0400 |
commit | cf0acae537a4664948485bc9e9a370fe7d100803 (patch) | |
tree | 5575808d7a7431f4eb3827b7d3d8e7da11e52002 /usr.bin/oemu/include | |
parent | 3ab5f07bac34bc9de5b9038407353c707f3f4c2f (diff) |
oemu: cpu: Decode and process HLT instruction
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/oemu/include')
-rw-r--r-- | usr.bin/oemu/include/oemu/osmx64.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/oemu/include/oemu/osmx64.h b/usr.bin/oemu/include/oemu/osmx64.h index d7ea8b1..e9baae0 100644 --- a/usr.bin/oemu/include/oemu/osmx64.h +++ b/usr.bin/oemu/include/oemu/osmx64.h @@ -47,6 +47,7 @@ #define INST_SLL 0x11 /* Shift left logical operation */ #define INST_SRL 0x12 /* Shift right logical operation */ #define INST_MOV_IMM 0x13 /* Data move operation from IMM */ +#define INST_HLT 0x14 /* Halt */ /* Registers */ #define REG_X0 0x00 |