From 8b0bb1888b46d1b2f5c69233660ae3f419ec706d Mon Sep 17 00:00:00 2001 From: Themis Demetriades Date: Wed, 5 Jun 2024 20:00:25 +0100 Subject: [PATCH] Changed constant name for 64 bit register type w/ S --- src/a64instruction_global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/a64instruction_global.h b/src/a64instruction_global.h index 489fe06..ff748a6 100644 --- a/src/a64instruction_global.h +++ b/src/a64instruction_global.h @@ -8,7 +8,7 @@ typedef uint8_t a64inst_regSpecifier; // Denotes the type of register being referred to typedef enum { a64inst_W = 0, - a64inst_R = 1 + a64inst_X = 1 } a64inst_regType; #endif