From 229509a0670c05387967fe54548221cca897ab27 Mon Sep 17 00:00:00 2001 From: dingusdev <52434309+dingusdev@users.noreply.github.com> Date: Thu, 29 Feb 2024 21:48:04 -0700 Subject: [PATCH] Add help for mregs --- debugger/debugger.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/debugger/debugger.cpp b/debugger/debugger.cpp index 372a83f..446b748 100644 --- a/debugger/debugger.cpp +++ b/debugger/debugger.cpp @@ -77,6 +77,7 @@ static void show_help() { cout << " until X -- execute until address X is reached" << endl; cout << " go -- exit debugger and continue emulator execution" << endl; cout << " regs -- dump content of the GRPs" << endl; + cout << " mregs -- dump content of the MMU registers" << endl; cout << " set R=X -- assign value X to register R" << endl; cout << " if R=loglevel, set the internal" << endl; cout << " log level to X whose range is -2...9" << endl;