ARMv8/src/a64instruction/a64instruction_DP.h
2024-06-12 19:28:48 +01:00

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