Move register type struct to global header w/ S
This commit is contained in:
parent
2e0668aefd
commit
34eee8599e
@ -1,4 +1,14 @@
|
|||||||
|
#ifndef __A64INSTRUCTION_GLOBAL__
|
||||||
|
#define __A64INSTRUCTION_GLOBAL__
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
// Specifies the register being referred to
|
// Specifies the register being referred to
|
||||||
typedef uint8_t a64inst_regSpecifier;
|
typedef uint8_t a64inst_regSpecifier;
|
||||||
|
|
||||||
|
// Denotes the type of register being referred to
|
||||||
|
typedef enum {
|
||||||
|
a64inst_W = 0,
|
||||||
|
a64inst_R = 1
|
||||||
|
} a64inst_regType;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user