Change enum values in DP Register to match the spec, w/ T

This commit is contained in:
sBubshait 2024-06-05 21:23:52 +01:00
parent 120b492a48
commit b3ccee44bb

View File

@ -27,8 +27,8 @@ typedef enum {
// Holds data specific to arithmetic/logic register data processing instructions // Holds data specific to arithmetic/logic register data processing instructions
typedef struct { typedef struct {
enum { enum {
a64inst_DPR_ARITHM = 0, a64inst_DPR_ARITHM = 1,
a64inst_DPR_LOGIC = 1 a64inst_DPR_LOGIC = 0
} type; } type;
a64inst_ShiftType shiftType; a64inst_ShiftType shiftType;
uint8_t shiftAmount; uint8_t shiftAmount;