fixe enum name

This commit is contained in:
mariusmonton 2021-02-21 14:04:24 +01:00
parent 512e701f22
commit ea04c6ac37
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
#include "BASE_ISA.h" #include "BASE_ISA.h"
enum { enum Codes {
LUI = 0b0110111, LUI = 0b0110111,
AUIPC = 0b0010111, AUIPC = 0b0010111,
JAL = 0b1101111, JAL = 0b1101111,
@ -80,7 +80,7 @@ enum {
CSRRWI = 0b101, CSRRWI = 0b101,
CSRRSI = 0b110, CSRRSI = 0b110,
CSRRCI = 0b111, CSRRCI = 0b111,
} Codes; };
bool BASE_ISA::Exec_LUI() const { bool BASE_ISA::Exec_LUI() const {
int rd; int rd;