summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/s2650/2650dasm.cpp
Commit message (Collapse)AuthorAgeFilesLines
* s2650: fix issue with add/sub half carry flag, small cleanup hap2024-11-271-69/+34
|
* galaxia: remove partial updates, it was problematic for this driver and ↵ hap2024-11-261-1/+1
| | | | | | | unneeded, quasar: correct cpu speed and improve vblank duration to fix game speed bug on 3rd level, s2636: remove render_first_line, add a start_new_frame instead
* Debugger feature improvements AJR2022-03-271-12/+19
| | | | | | | | - 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
* s2650: fixed 3 errors n the z80-format disassembler. Robbbert2022-03-041-3/+3
|
* fixed some clang-tidy warnings (nw) (#6229) Oliver Stöneberg2020-01-291-1/+1
| | | | | | | | | | | | | | | | * fixed some readability-static-accessed-through-instance clang-tidy warnings (nw) * fixed some readability-redundant-string-cstr clang-tidy warnings (nw) * fixed some readability-redundant-control-flow clang-tidy warnings (nw) * fixed some modernize-use-nullptr clang-tidy warnings (nw) * fixed some performance-faster-string-find clang-tidy warnings (nw) * fixed some performance-for-range-copy clang-tidy warnings (nw) * fixed some performance-unnecessary-value-param clang-tidy warnings (nw)
* mcs48, s2650: Use paged mode for disassembler AJR2018-01-231-0/+10
|
* dvdisasm: Overhaul [O. Galibert] Olivier Galibert2017-11-261-552/+236
| | | | | | | | 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.
* Changed disassembler infrastructure to not use char buffers internally Nathan Woods2016-11-201-11/+1
|
* Changed the s2650 disassembler to use 'std::ostream &' internally Nathan Woods2016-10-301-163/+173
|
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-221-2/+2
| | | | | 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
* clang-modernize part 3 Miodrag Milanovic2015-12-041-2/+2
|
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-081-0/+868