Changed constant name for 64 bit register type w/ S

This commit is contained in:
Themis Demetriades 2024-06-05 20:00:25 +01:00
parent 93031e82e0
commit 8b0bb1888b

View File

@ -8,7 +8,7 @@ typedef uint8_t a64inst_regSpecifier;
// Denotes the type of register being referred to // Denotes the type of register being referred to
typedef enum { typedef enum {
a64inst_W = 0, a64inst_W = 0,
a64inst_R = 1 a64inst_X = 1
} a64inst_regType; } a64inst_regType;
#endif #endif