diff options
| author | 2024-03-19 16:08:35 +1100 | |
|---|---|---|
| committer | 2024-03-19 16:08:35 +1100 | |
| commit | 0524b105c18691e5dbddee3aef4afad08f277fb9 (patch) | |
| tree | 5d10dbc399688f648b63ce3fc1cc93b0ce4c4277 /docs | |
| parent | c545ac9eb6407348fe28f2cc3f70d07dcece915c (diff) | |
emu/debug/debugcmd.cpp: Added support for lowercase hex to printf/logerror. [Patrick Mackinlay]
Also simplified implementation by better leveraging util/strformat.h.
This is from pull request #12124, to get some testing for the
fundamental change before freeze.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/source/conf.py | 4 | ||||
| -rw-r--r-- | docs/source/debugger/general.rst | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index e932d633316..3ab96db14b5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,9 +63,9 @@ copyright = u'1997-2024, MAMEdev and contributors' # built documents. # # The short X.Y version. -version = '0.263' +version = '0.264' # The full version, including alpha/beta/rc tags. -release = '0.263' +release = '0.264' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/debugger/general.rst b/docs/source/debugger/general.rst index cdaf9ca4019..13060894aae 100644 --- a/docs/source/debugger/general.rst +++ b/docs/source/debugger/general.rst @@ -198,6 +198,9 @@ available: minimum field width and zero fill using lowercase letters. %[0][<n>]x Prints the corresponding argument as a hexadecimal number with + optional minimum field width and zero fill using lowercase letters. +%[0][<n>]X + Prints the corresponding argument as a hexadecimal number with optional minimum field width and zero fill using uppercase letters. \%% Prints a literal percent symbol. |
