diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-24 05:17:35 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-24 05:17:35 -0400 |
commit | 3bcd65574cd857781e49ecf6d92480ad43fdaa34 (patch) | |
tree | bb9fc5e3b8e44a67c5cefccb9a631d2b88331e67 /usr.bin/oemu/include | |
parent | b10c398798d32ed2c91314239d1af474efeb7de1 (diff) |
oasm: Unreserve 9 opcode gap
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 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/oemu/include/oemu/osmx64.h b/usr.bin/oemu/include/oemu/osmx64.h index 81940f1..ffd6156 100644 --- a/usr.bin/oemu/include/oemu/osmx64.h +++ b/usr.bin/oemu/include/oemu/osmx64.h @@ -43,16 +43,16 @@ #define INST_OR 0x07 /* Bitwise OR operation */ #define INST_XOR 0x08 /* Bitwise XOR operation */ #define INST_AND 0x09 /* Bitwise AND operation */ -#define INST_NOT 0x10 /* Bitwise NOT operation */ -#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 */ -#define INST_BR 0x15 /* Branch */ -#define INST_MROB 0x16 /* Mask register over byte */ -#define INST_MROW 0x17 /* Mask register over word */ -#define INST_MROD 0x18 /* Mask register over dword */ -#define INST_MROQ 0x19 /* Mask register over qword */ +#define INST_NOT 0x0A /* Bitwise NOT operation */ +#define INST_SLL 0x0B /* Shift left logical operation */ +#define INST_SRL 0x0C /* Shift right logical operation */ +#define INST_MOV_IMM 0x0D /* Data move operation from IMM */ +#define INST_HLT 0x0E /* Halt */ +#define INST_BR 0x0F /* Branch */ +#define INST_MROB 0x10 /* Mask register over byte */ +#define INST_MROW 0x11 /* Mask register over word */ +#define INST_MROD 0x12 /* Mask register over dword */ +#define INST_MROQ 0x13 /* Mask register over qword */ /* Registers */ #define REG_X0 0x00 |