diff options
author | 2020-05-03 20:19:18 -0400 | |
---|---|---|
committer | 2020-05-03 20:19:32 -0400 | |
commit | c4ee747357bf29df1970e5b4f1929128091fe134 (patch) | |
tree | 26543fb768b7ec4c07542c3cd7df6248bc63ab63 /src/emu/debug/debughlp.cpp | |
parent | aa2e069e20a6adac23d44964c059ffd12e71caa2 (diff) |
Add optional condition parameter to debugger gex command
Diffstat (limited to 'src/emu/debug/debughlp.cpp')
-rw-r--r-- | src/emu/debug/debughlp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp index 8eb65554f90..4a6b265628e 100644 --- a/src/emu/debug/debughlp.cpp +++ b/src/emu/debug/debughlp.cpp @@ -137,7 +137,7 @@ static const help_item static_help_list[] = " o[ver] [<count>=1] -- single steps over <count> instructions (F10)\n" " out -- single steps until the current subroutine/exception handler is exited (Shift-F11)\n" " g[o] [<address>] -- resumes execution, sets temp breakpoint at <address> (F5)\n" - " ge[x] [<exception>] -- resumes execution, setting temp breakpoint if <exception> is raised\n" + " ge[x] [<exception>[,<condition>]] -- resumes execution, setting temp breakpoint if <exception> is raised\n" " gi[nt] [<irqline>] -- resumes execution, setting temp breakpoint if <irqline> is taken (F7)\n" " gt[ime] <milliseconds> -- resumes execution until the given delay has elapsed\n" " gv[blank] -- resumes execution, setting temp breakpoint on the next VBLANK (F8)\n" |