Change enum values in DP Register to match the spec, w/ T
This commit is contained in:
parent
120b492a48
commit
b3ccee44bb
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user