This is a list of pages that have been tagged with “debug”.
| Page | Description | Tags |
|---|---|---|
| MAME Debugger Help | This page lists all available commands and the syntax of the MAME debugger, as available inside it with the “help” command. [Debugger main window] Help topics: * general -- General debugger help * memory -- Memory commands * execution -- Execution commands * breakpoints -- Breakpoint commands * watchpoints -- Watchpoint commands * expressions -- Expressions * comments -- Code annotation commands | mame, debug |
| logerror() | The logerror() function is used to output text to the standard error.log file (if the log option is enabled) and is also visible in a debugger error output window. Syntax Declaration Declared in src/emu/mame.h as void CLIB_DECL logerror(const char *format, ...) ATTR_PRINTF(1,2); | reference, mame, debug, log |
| popmessage() | The popmessage() function is used to display on-screen info at the bottom of the emulated display. Syntax Declaration Declared in src/emu/mame.h as void CLIB_DECL popmessage(const char *format, ...) ATTR_PRINTF(1,2); Parameters * *format -- Pointer to a const char with the text to be printed. Supports printf-style parameters. Can be NULL, in this case the displayed message is cleared immediately. * ... -- A list of variables that are referenced in the text. | reference, mame, debug, log |