Fix branch enum numbering to match the spec, w/ T

This commit is contained in:
sBubshait 2024-06-05 20:14:12 +01:00
parent 024044afc7
commit 9ea494acfc

View File

@ -4,8 +4,8 @@
typedef enum { typedef enum {
a64inst_UNCONDITIONAL = 0, a64inst_UNCONDITIONAL = 0,
a64inst_REGISTER = 1, a64inst_REGISTER = 3,
a64inst_CONDITIONAL = 2 a64inst_CONDITIONAL = 1
} a64inst_BranchType; } a64inst_BranchType;
typedef struct { typedef struct {