ARMv8/src/a64instruction_DP.h
2024-05-31 17:30:19 +01:00

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;