From b3ccee44bbb19371c6daaa8324f3ea64de708fbb Mon Sep 17 00:00:00 2001 From: sBubshait Date: Wed, 5 Jun 2024 21:23:52 +0100 Subject: [PATCH] Change enum values in DP Register to match the spec, w/ T --- src/a64instruction_DPRegister.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/a64instruction_DPRegister.h b/src/a64instruction_DPRegister.h index d82510a..ecf2f2c 100644 --- a/src/a64instruction_DPRegister.h +++ b/src/a64instruction_DPRegister.h @@ -27,8 +27,8 @@ typedef enum { // Holds data specific to arithmetic/logic register data processing instructions typedef struct { enum { - a64inst_DPR_ARITHM = 0, - a64inst_DPR_LOGIC = 1 + a64inst_DPR_ARITHM = 1, + a64inst_DPR_LOGIC = 0 } type; a64inst_ShiftType shiftType; uint8_t shiftAmount;