> compile NEMU

221220000 张三
Linux zzy 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
 13:47:54 up 1 day, 12:38,  1 user,  load average: 0.37, 0.33, 0.23
This commit is contained in:
tracer-ics2023
2024-09-01 13:47:55 +08:00
committed by zzy
parent e149c99fb5
commit b7ba9ed52c
2 changed files with 0 additions and 2 deletions

View File

@ -24,7 +24,6 @@ static inline int check_reg_idx(int idx) {
}
#define gpr(idx) (cpu.gpr[check_reg_idx(idx)])
#define selfpc (cpu.pc)
static inline const char* reg_name(int idx) {
extern const char* regs[];

View File

@ -33,7 +33,6 @@ void isa_reg_display() {
word_t isa_reg_str2val(const char *s, bool *success) {
*success = false;
if (strcmp(s, "pc") == 0) return selfpc;
for (int i = 0; i < ARRLEN(regs); i ++) {
if (strcmp(s, reg_name(i)) == 0) {
*success = true;