> compile NEMU

ysyx_22040000 李心杨
Linux calcite 6.1.69 #1-NixOS SMP PREEMPT_DYNAMIC Wed Dec 20 16:00:29 UTC 2023 x86_64 GNU/Linux
 20:55:51  up 3 days 19:56,  2 users,  load average: 0.80, 1.00, 0.79
This commit is contained in:
tracer-ysyx 2024-01-11 20:55:51 +08:00 committed by xinyangli
parent fe0fed108c
commit deb8742bc0

View file

@ -27,9 +27,11 @@ const char *regs[] = {
void isa_reg_display() { void isa_reg_display() {
int colomn_per_row = 4; int colomn_per_row = 4;
for(int i = 0; i < ARRLEN(regs); i++) { for(int i = 0; i < ARRLEN(regs); i++) {
printf("%3s: %8X\t", reg_name(i), gpr(i)); printf("%3s: %#8x\t", reg_name(i), gpr(i));
if (i % colomn_per_row == 3) if (i % colomn_per_row == 3)
putchar('\n'); putchar('\n');
else
putchar('|');
} }
} }