| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add 'fill' command to debugger. Syntax and operation are similar to 'find' ↵ | 2020-08-01 | 1 | -0/+17 | |
| | | | | | command. | ||||
| * | emu: correct some file headers (nw) | 2020-06-19 | 1 | -1/+1 | |
| | | |||||
| * | Add optional condition parameter to debugger gex command | 2020-05-03 | 1 | -1/+1 | |
| | | |||||
| * | Fix two cases where debugger can crash mame ("cheatlist" command before ↵ | 2020-03-13 | 1 | -8/+3 | |
| | | | | | "cheatinit", long strings after "help") | ||||
| * | use C++ library includes (nw) | 2020-01-22 | 1 | -1/+1 | |
| | | |||||
| * | Add cpulist command to debugger | 2019-12-07 | 1 | -0/+1 | |
| | | |||||
| * | -debugcon: Added CMDFLAG_CUSTOM_HELP, in order to flag custom ↵ | 2019-07-07 | 1 | -0/+1 | |
| | | | | | device-specific commands that have custom help text. [Ryan Holtz] | ||||
| * | debugger: add command for go_exception (#3682) | 2018-06-23 | 1 | -0/+1 | |
| | | |||||
| * | debughlp.cpp: replaced references to 'decrypted opcodes' with 'opcodes', as ↵ | 2018-05-02 | 1 | -5/+5 | |
| | | | | | suggested (nw) | ||||
| * | debughlp.cpp: document dumpo command (nw) | 2018-04-20 | 1 | -10/+11 | |
| | | |||||
| * | Added suspend and resume debugger commands (#3411) | 2018-04-02 | 1 | -0/+2 | |
| | | |||||
| * | More docs work: escapes, debugger update (nw) (#3168) | 2018-02-05 | 1 | -75/+79 | |
| | | | | | | | | | | | * Missed a couple escape sequences. (nw) * A little more escaping, acronym fixes, fix oddity in symlist (nw) * Update debugger internal help to match docs (nw) * Lowercasing for CPU in command parameters, fix casing on ASCII. (nw) | ||||
| * | rewind implementation fixes and improvements | 2017-12-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | - reset scheduler savestate to what it was for years before rewind -- changing saved variables should be done after thorough testing. right now, adding some vars breaks some machines, adding other vars breaks others - switch to megabyte-wise capacity -- savestate size greatly differs between machines, relying on state count is unstable - switch to internal indexing -- no longer depends on inaccurate machine time - rewind accelerator key in debugger (Ctrl+F11) - report capacity hit (once), with some useful info - make error reports saner - mention rewind and rewind_capacity in the docs | ||||
| * | Revert "Command to print all debugger help to html file" | 2017-12-15 | 1 | -400/+296 | |
| | | |||||
| * | debughlp - fix gcc build | 2017-12-12 | 1 | -2/+2 | |
| | | |||||
| * | add command to print all debugger help to html file | 2017-12-11 | 1 | -296/+400 | |
| | | | | | tweak static_help_list spacing to always pad commands and never pad explanations | ||||
| * | (nw) fixed typo, and rewind off by default. | 2017-12-08 | 1 | -1/+1 | |
| | | |||||
| * | explain the rewind command in debughlp | 2017-12-06 | 1 | -1/+15 | |
| | | | | | fix a typo in the stateload description | ||||
| * | Made the debugger 'load' length field be optional, C++-ification | 2017-06-25 | 1 | -4/+4 | |
| | | |||||
| * | Merge pull request #1987 from npwoods/tracesym_debugger_command | 2017-01-17 | 1 | -0/+17 | |
| |\ | | | | | Created a new debugger command 'tracesym' | ||||
| | * | Augmenting help file | 2017-01-16 | 1 | -0/+17 | |
| | | | |||||
| * | | Augmenting help file | 2017-01-16 | 1 | -6/+13 | |
| |/ | |||||
| * | Introduce u8/u16/u32/u64/s8/s16/s32/s64 | 2016-11-19 | 1 | -1/+1 | |
| | | | | | | | | | | | | | * New abbreviated types are in osd and util namespaces, and also in global namespace for things that #include "emu.h" * Get rid of import of cstdint types to global namespace (C99 does this anyway) * Remove the cstdint types from everything in emu * Get rid of U64/S64 macros * Fix a bug in dps16 caused by incorrect use of macro * Fix debugcon not checking for "do " prefix case-insensitively * Fix a lot of messed up tabulation * More constexpr * Fix up many __names | ||||
| * | NOTICE (TYPE NAME CONSOLIDATION) | 2016-10-22 | 1 | -1/+1 | |
| | | | | | | Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8 | ||||
| * | Fix various spelling fixes. | 2016-09-29 | 1 | -1/+1 | |
| | | |||||
| * | Make loop collation optional for debugger trace and traceover commands | 2016-07-14 | 1 | -18/+29 | |
| | | |||||
| * | Cleanup and version bumpmame0175 | 2016-06-29 | 1 | -1/+1 | |
| | | |||||
| * | Added commit command to debugger. [Angelo Salese] | 2016-06-05 | 1 | -0/+18 | |
| | | |||||
| * | Update help file, the whole help string parser is so 90s, nw | 2016-06-04 | 1 | -0/+5 | |
| | | |||||
| * | Added comlist comment to debugger [Angelo Salese] | 2016-06-04 | 1 | -0/+8 | |
| | | | | | Added notes wrt dangarj protection, nw | ||||
| * | clang-modernize part 1 (nw) | 2015-12-03 | 1 | -1/+1 | |
| | | |||||
| * | Rename *.c -> *.cpp in our source (nw) | 2015-11-08 | 1 | -0/+1508 | |
