mirror of
https://github.com/holub/mame
synced 2025-06-11 07:14:07 +03:00
Merge branch 'release0276' into HEAD
This commit is contained in:
commit
f5ac6aaa54
@ -63,9 +63,9 @@ copyright = u'1997-2025, MAMEdev and contributors'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.275'
|
||||
version = '0.276'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.275'
|
||||
release = '0.276'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -1,7 +1,7 @@
|
||||
.. _debugger-exceptionpoint-list:
|
||||
|
||||
Exception Point Debugger Commands
|
||||
=================================
|
||||
Exceptionpoint Debugger Commands
|
||||
================================
|
||||
|
||||
:ref:`debugger-command-epset`
|
||||
sets a new exceptionpoint
|
||||
@ -14,8 +14,8 @@ Exception Point Debugger Commands
|
||||
:ref:`debugger-command-eplist`
|
||||
lists exceptionpoints
|
||||
|
||||
Exception points halt execution and activate the debugger when
|
||||
a CPU raises a particular exception number.
|
||||
Exceptionpoints halt execution and activate the debugger when a CPU
|
||||
raises a particular exception number.
|
||||
|
||||
|
||||
.. _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
|
||||
halt execution at the start of the exception handler; otherwise,
|
||||
execution will continue with no notification. The optional **<action>**
|
||||
parameter provides a command that is executed whenever the exception
|
||||
point is hit and the **<condition>** is true. Note that you may need to
|
||||
embed the action within braces ``{ }`` in order to prevent commas and
|
||||
semicolons from being interpreted as applying to the ``epset`` command
|
||||
itself.
|
||||
parameter provides a command that is executed whenever the
|
||||
exceptionpoint is hit and the **<condition>** is true. Note that you
|
||||
may need to embed the action within braces ``{ }`` in order to prevent
|
||||
commas and semicolons from being interpreted as applying to the
|
||||
``epset`` command itself.
|
||||
|
||||
The numbering of exceptions depends upon the CPU type. Causes of
|
||||
exceptions may include internally or externally vectored interrupts,
|
||||
@ -84,9 +84,9 @@ epdisable
|
||||
|
||||
The epdisable command disables exceptionpoints. If **<epnum>** is
|
||||
specified, only the requested exceptionpoints are disabled, otherwise
|
||||
all exception points are disabled. Note that disabling an exception
|
||||
point does not delete it, it just temporarily marks the exception
|
||||
point as inactive.
|
||||
all exceptionpoints are disabled. Note that disabling an
|
||||
exceptionpoint does not delete it, it just temporarily marks the
|
||||
exceptionpoint as inactive.
|
||||
|
||||
Examples:
|
||||
|
||||
|
@ -46,7 +46,7 @@ const help_item f_static_help_list[] =
|
||||
" Breakpoints\n"
|
||||
" Watchpoints\n"
|
||||
" Registerpoints\n"
|
||||
" Exception Points\n"
|
||||
" Exceptionpoints\n"
|
||||
" Expressions\n"
|
||||
" Comments\n"
|
||||
" Cheats\n"
|
||||
@ -195,7 +195,7 @@ const help_item f_static_help_list[] =
|
||||
{
|
||||
"exceptionpoints",
|
||||
"\n"
|
||||
"Exception Point Commands\n"
|
||||
"Exceptionpoint Commands\n"
|
||||
"Type help <command> for further details on each command\n"
|
||||
"\n"
|
||||
" ep[set] <type>[,<condition>[,<action>]] -- sets exceptionpoint on <type>\n"
|
||||
@ -1638,8 +1638,8 @@ const help_item f_static_help_list[] =
|
||||
"\n"
|
||||
"The epdisable command disables exceptionpoints. If <epnum> is specified, only the requested "
|
||||
"exceptionpoints are disabled, otherwise all exceptionpoints are disabled. Note that "
|
||||
"disabling an exception point does not delete it, it just temporarily marks the exception "
|
||||
"point as inactive.\n"
|
||||
"disabling an exceptionpoint does not delete it, it just temporarily marks the "
|
||||
"exceptionpoint as inactive.\n"
|
||||
"\n"
|
||||
"Examples:\n"
|
||||
"\n"
|
||||
|
Loading…
Reference in New Issue
Block a user