8 lines
195 B
C
8 lines
195 B
C
// Denotes the type of arithmetic operations supported by the architecture
|
|
typedef enum {
|
|
a64inst_ADD = 0,
|
|
a64inst_ADDS = 1,
|
|
a64inst_SUB = 2,
|
|
a64inst_SUBS = 3
|
|
} a64inst_arithmOp;
|