Merge branch 'release0276' into HEAD

This commit is contained in:
Vas Crabb 2025-03-30 06:40:55 +11:00
commit f5ac6aaa54
4 changed files with 70 additions and 70 deletions

View File

@ -63,9 +63,9 @@ copyright = u'1997-2025, MAMEdev and contributors'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.275' version = '0.276'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.275' release = '0.276'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -1,7 +1,7 @@
.. _debugger-exceptionpoint-list: .. _debugger-exceptionpoint-list:
Exception Point Debugger Commands Exceptionpoint Debugger Commands
================================= ================================
:ref:`debugger-command-epset` :ref:`debugger-command-epset`
sets a new exceptionpoint sets a new exceptionpoint
@ -14,8 +14,8 @@ Exception Point Debugger Commands
:ref:`debugger-command-eplist` :ref:`debugger-command-eplist`
lists exceptionpoints lists exceptionpoints
Exception points halt execution and activate the debugger when Exceptionpoints halt execution and activate the debugger when a CPU
a CPU raises a particular exception number. raises a particular exception number.
.. _debugger-command-epset: .. _debugger-command-epset:
@ -31,11 +31,11 @@ will be evaluated each time the exception point is hit. If the result
of the expression is true (non-zero), the exceptionpoint will actually of the expression is true (non-zero), the exceptionpoint will actually
halt execution at the start of the exception handler; otherwise, halt execution at the start of the exception handler; otherwise,
execution will continue with no notification. The optional **<action>** execution will continue with no notification. The optional **<action>**
parameter provides a command that is executed whenever the exception parameter provides a command that is executed whenever the
point is hit and the **<condition>** is true. Note that you may need to exceptionpoint is hit and the **<condition>** is true. Note that you
embed the action within braces ``{ }`` in order to prevent commas and may need to embed the action within braces ``{ }`` in order to prevent
semicolons from being interpreted as applying to the ``epset`` command commas and semicolons from being interpreted as applying to the
itself. ``epset`` command itself.
The numbering of exceptions depends upon the CPU type. Causes of The numbering of exceptions depends upon the CPU type. Causes of
exceptions may include internally or externally vectored interrupts, exceptions may include internally or externally vectored interrupts,
@ -84,9 +84,9 @@ epdisable
The epdisable command disables exceptionpoints. If **<epnum>** is The epdisable command disables exceptionpoints. If **<epnum>** is
specified, only the requested exceptionpoints are disabled, otherwise specified, only the requested exceptionpoints are disabled, otherwise
all exception points are disabled. Note that disabling an exception all exceptionpoints are disabled. Note that disabling an
point does not delete it, it just temporarily marks the exception exceptionpoint does not delete it, it just temporarily marks the
point as inactive. exceptionpoint as inactive.
Examples: Examples:

View File

@ -46,7 +46,7 @@ const help_item f_static_help_list[] =
" Breakpoints\n" " Breakpoints\n"
" Watchpoints\n" " Watchpoints\n"
" Registerpoints\n" " Registerpoints\n"
" Exception Points\n" " Exceptionpoints\n"
" Expressions\n" " Expressions\n"
" Comments\n" " Comments\n"
" Cheats\n" " Cheats\n"
@ -195,7 +195,7 @@ const help_item f_static_help_list[] =
{ {
"exceptionpoints", "exceptionpoints",
"\n" "\n"
"Exception Point Commands\n" "Exceptionpoint Commands\n"
"Type help <command> for further details on each command\n" "Type help <command> for further details on each command\n"
"\n" "\n"
" ep[set] <type>[,<condition>[,<action>]] -- sets exceptionpoint on <type>\n" " ep[set] <type>[,<condition>[,<action>]] -- sets exceptionpoint on <type>\n"
@ -1638,8 +1638,8 @@ const help_item f_static_help_list[] =
"\n" "\n"
"The epdisable command disables exceptionpoints. If <epnum> is specified, only the requested " "The epdisable command disables exceptionpoints. If <epnum> is specified, only the requested "
"exceptionpoints are disabled, otherwise all exceptionpoints are disabled. Note that " "exceptionpoints are disabled, otherwise all exceptionpoints are disabled. Note that "
"disabling an exception point does not delete it, it just temporarily marks the exception " "disabling an exceptionpoint does not delete it, it just temporarily marks the "
"point as inactive.\n" "exceptionpoint as inactive.\n"
"\n" "\n"
"Examples:\n" "Examples:\n"
"\n" "\n"