From d4c7711c21e5fef75d966a32dce96f9abc5af8b2 Mon Sep 17 00:00:00 2001 From: uvok Date: Sun, 25 Jan 2026 10:05:58 +0100 Subject: eater: Add flags_in flag --- eater_cpu/cpp/simpc_curses.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eater_cpu/cpp/simpc_curses.cpp') diff --git a/eater_cpu/cpp/simpc_curses.cpp b/eater_cpu/cpp/simpc_curses.cpp index b1ca064..4b4f04f 100644 --- a/eater_cpu/cpp/simpc_curses.cpp +++ b/eater_cpu/cpp/simpc_curses.cpp @@ -87,12 +87,13 @@ void simpc_ui_write(const std::unique_ptr &topp, uint64_t i) { topp->eater_computer->flags.__PVT__PC_count ? flag_on : flag_off, topp->eater_computer->flags.__PVT__PC_in ? flag_on : flag_off); PRINT_ME_W(clock_regs, flagstart + 1, 1, - "%c InsI | %c RAI | %c AO | %c BO | %c CnO", + "%c InsI | %c RAI | %c AO | %c BO | %c CnO | %c FI", topp->eater_computer->flags.__PVT__INS_in ? flag_on : flag_off, topp->eater_computer->flags.__PVT__RAM_in ? flag_on : flag_off, topp->eater_computer->flags.__PVT__A_out ? flag_on : flag_off, topp->eater_computer->flags.__PVT__B_out ? flag_on : flag_off, - topp->eater_computer->flags.__PVT__PC_out ? flag_on : flag_off); + topp->eater_computer->flags.__PVT__PC_out ? flag_on : flag_off, + topp->eater_computer->flags.__PVT__flags_in ? flag_on : flag_off); PRINT_ME_W( clock_regs, flagstart + 2, 1, "%c InsO | %c RAO | %c AlO | %c Sub | %c OI", topp->eater_computer->flags.__PVT__INS_out ? flag_on : flag_off, -- cgit v1.2.3