--- nono/debugger/debugger_hd64180.cpp 2026/04/29 17:05:28 1.1.1.3 +++ nono/debugger/debugger_hd64180.cpp 2026/04/29 17:05:32 1.1.1.4 @@ -161,10 +161,10 @@ DebuggerMD_hd64180::ShowRegister(FILE *c bool DebuggerMD_hd64180::ShowRegMain(FILE *cons) { - // AF:00 00 (------) PC:0000 AF':00 00 (-------) + // AF:00 00 (------) PC:0000 AF':00 00 // BC:00 00 SP:0000 BC':00 00 - // DE:00 00 IX:0000 I:00 DE':00 00 IX':0000 - // HL:00 00 IY:0000 R:00 HL':00 00 IY':0000 + // DE:00 00 IX:0000 I:00 DE':00 00 + // HL:00 00 IY:0000 R:00 HL':00 00 uint8 reg_i = cpu->GetI(); uint8 reg_r = cpu->GetR(); @@ -193,17 +193,14 @@ DebuggerMD_hd64180::ShowRegMain(FILE *co bool vi = (reg_i != prev_i); std::string fstr1 = FlagStr(cpu->reg.f); - std::string fstr2 = FlagStr(cpu->reg.ex.f); - fprintf(cons, "AF:%s%02x%s %s%02x%s (%s) PC:%04x " - "AF':%s%02x%s %s%02x%s (%s)\n", + "AF':%s%02x%s %s%02x%s\n", BOLDIF(va), cpu->reg.a, NORM, BOLDIF(vf), cpu->reg.f.Get(), NORM, fstr1.c_str(), cpu->reg.pc, BOLDIF(vxa), cpu->reg.ex.a, NORM, - BOLDIF(vxf), cpu->reg.ex.f.Get(), NORM, - fstr2.c_str()); + BOLDIF(vxf), cpu->reg.ex.f.Get(), NORM); fprintf(cons, "BC:%s%02x%s %s%02x%s SP:%s%04x%s " "BC':%s%02x%s %s%02x%s\n", BOLDIF(vb), cpu->reg.b, NORM,