summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp16/dsp16dis.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Debugger feature improvements AJR2022-03-271-0/+2
| | | | | | | | - Add 'gbt' and 'gbf' debugger commands to step until a true or false conditional branch has been detected. - Update over 100 of the disassemblers in MAME to output a new STEP_COND flag for all conditional branches. Besides being used for execution of the new 'gbt' and 'gbf' commands, this flag also now helps the debugger 'out' command to properly handle conditional return instructions. - Remove STEP_OVER from many instructions that aren't actually subroutine calls (e.g. DJNZ on Z80). A 'gni' debugger command (go next instruction) has been added to accommodate some of the misuse. - Add instruction flag support to several more disassemblers that lacked them entirely (e.g. st62xx) - Don't pass over delay slots for debugging in ASAP core
* dsp16: fix condition mask in disassembler (nw) Vas Crabb2018-05-091-1/+1
| | | | (nw) remove more MCFG macros and make speaker config more explicit
* dsp16: fix inconsistency in disassembler (nw) Vas Crabb2018-03-201-2/+2
|
* dsp16: fix disassembler bugs (nw) Vas Crabb2018-03-191-3/+3
| | | | qsound_hle: simplify sample fetch/scale and register writes
* dsp16: rewrite disassembler - less cluttered output, better handling of ↵ Vas Crabb2018-03-181-422/+465
| | | | ambiguous operations, look-ahead for predicated jumps, live will/won't comments on conditional instructions
* use more constexpr and literal classes in UML to give compiler more ↵ Vas Crabb2018-03-171-20/+20
| | | | optimisation opportunities (nw)
* dsp16: Improve disassembler - less ambiguous, more like the manual. Vas Crabb2018-03-151-383/+322
|
* dvdisasm: Overhaul [O. Galibert] Olivier Galibert2017-11-261-15/+20
| | | | | | | | Disassemblers are now independant classes. Not only the code is cleaner, but unidasm has access to all the cpu cores again. The interface to the disassembly method has changed from byte buffers to objects that give a result to read methods. This also adds support for lfsr and/or paged PCs.
* srcclean (nw) Vas Crabb2016-11-271-1/+1
|
* Changed disassembler infrastructure to not use char buffers internally Nathan Woods2016-11-201-11/+1
|
* Changed the dsp16a disassembler to use 'std::ostream &' internally Nathan Woods2016-11-111-31/+46
|
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-221-90/+90
| | | | | 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
* Replace strformat, strprintf and strcatprintf with type-safe steam_format ↵ Vas Crabb2016-02-281-35/+33
| | | | | | | | | and string_format Update MAME to use new function Instantiate ODR-used static constant members Make some of the UI code more localisable Remove use of retired functions in tools
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-081-0/+583