13 lines
264 B
C
13 lines
264 B
C
#ifndef __A64INSTRUCTION_DP__
|
|
#define __A64INSTRUCTION_DP__
|
|
|
|
// 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;
|
|
|
|
#endif
|