diff options
Diffstat (limited to 'src/emu/debug/debughlp.cpp')
-rw-r--r-- | src/emu/debug/debughlp.cpp | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp index 5d71d81e0ba..76102402bcb 100644 --- a/src/emu/debug/debughlp.cpp +++ b/src/emu/debug/debughlp.cpp @@ -359,11 +359,12 @@ const help_item f_static_help_list[] = "The printf command performs a C-style printf to the debugger console. Only a very limited set of " "formatting options are available:\n" "\n" - " %c -- 8-bit character\n" - " %[0][<n>]d -- decimal number with optional digit count and zero-fill\n" - " %[0][<n>]o -- octal number with optional digit count and zero-fill\n" - " %[0][<n>]x -- hexadecimal number with optional digit count and zero-fill (lowercase digits)\n" - " %[0][<n>]X -- hexadecimal number with optional digit count and zero-fill (uppercase digits)\n" + " %c -- 8-bit character\n" + " %[-][0][<n>]d -- decimal number with optional left justification, zero fill and minimum width\n" + " %[-][0][<n>]o -- octal number with optional left justification, zero fill and minimum width\n" + " %[-][0][<n>]x -- lowercase hexadecimal number with optional left justification, zero fill and minimum width\n" + " %[-][0][<n>]X -- uppercase hexadecimal number with optional left justification, zero fill and minimum width\n" + " %[-][<n>][.[<n>]]s -- null-terminated string of 8-bit characters with optional left justification, minimum and maximum width\n" "\n" "All remaining formatting options are ignored. Use %% to output a % character. Multiple lines can be " "printed by embedding a \\n in the text.\n" @@ -371,7 +372,7 @@ const help_item f_static_help_list[] = "Examples:\n" "\n" "printf \"PC=%04X\",pc\n" - " Prints PC=<pcval> where <pcval> is displayed in hexadecimal with 4 digits with zero-fill.\n" + " Prints PC=<pcval> where <pcval> is displayed in uppercase hexadecimal with 4 digits and zero fill.\n" "\n" "printf \"A=%d, B=%d\\nC=%d\",a,b,a+b\n" " Prints A=<aval>, B=<bval> on one line, and C=<a+bval> on a second line.\n" @@ -382,21 +383,12 @@ const help_item f_static_help_list[] = " logerror <format>[,<item>[,...]]\n" "\n" "The logerror command performs a C-style printf to the error log. Only a very limited set of " - "formatting options are available:\n" - "\n" - " %c -- 8-bit character\n" - " %[0][<n>]d -- decimal number with optional digit count and zero-fill\n" - " %[0][<n>]o -- octal number with optional digit count and zero-fill\n" - " %[0][<n>]x -- hexadecimal number with optional digit count and zero-fill (lowercase digits)\n" - " %[0][<n>]X -- hexadecimal number with optional digit count and zero-fill (uppercase digits)\n" - "\n" - "All remaining formatting options are ignored. Use %% to output a % character. Multiple lines can be " - "printed by embedding a \\n in the text.\n" + "formatting options are available. See the 'printf' help for details.\n" "\n" "Examples:\n" "\n" - "logerror \"PC=%04X\",pc\n" - " Logs PC=<pcval> where <pcval> is displayed in hexadecimal with 4 digits with zero-fill.\n" + "logerror \"PC=%04x\",pc\n" + " Logs PC=<pcval> where <pcval> is displayed in lowercase hexadecimal with 4 digits and zero fill.\n" "\n" "logerror \"A=%d, B=%d\\nC=%d\",a,b,a+b\n" " Logs A=<aval>, B=<bval> on one line, and C=<a+bval> on a second line.\n" |