ARMv8/src/a64instruction/a64instruction_global.h

15 lines
301 B
C

#ifndef __A64INSTRUCTION_GLOBAL__
#define __A64INSTRUCTION_GLOBAL__
#include <stdint.h>
// Specifies the register being referred to
typedef uint8_t a64inst_regSpecifier;
// Denotes the type of register being referred to
typedef enum {
a64inst_W = 0,
a64inst_X = 1
} a64inst_regType;
#endif