From 6bd0f17304d78e2b7e37684a672f59c9cc2444d0 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 24 Jul 2025 03:52:32 -0400 Subject: oemu: cpu: Add decoding logic of MRO instructions Signed-off-by: Ian Moffett --- usr.bin/oemu/include/oemu/osmx64.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'usr.bin/oemu/include') diff --git a/usr.bin/oemu/include/oemu/osmx64.h b/usr.bin/oemu/include/oemu/osmx64.h index b1df5d3..81940f1 100644 --- a/usr.bin/oemu/include/oemu/osmx64.h +++ b/usr.bin/oemu/include/oemu/osmx64.h @@ -49,6 +49,10 @@ #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 */ /* Registers */ #define REG_X0 0x00 -- cgit v1.2.3