Move register type struct to global header w/ S

This commit is contained in:
Themis Demetriades 2024-05-31 17:25:51 +01:00
parent 2e0668aefd
commit 34eee8599e

View File

@ -1,4 +1,14 @@
#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_R = 1
} a64inst_regType;
#endif