summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvstate.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove all uses of first_screen() from core files, nw Ryan Holtz2018-03-111-2/+26
|
* cleanup headers of not used friend classes (nw) Miodrag Milanovic2017-02-121-1/+0
|
* Introduce u8/u16/u32/u64/s8/s16/s32/s64 Vas Crabb2016-11-191-13/+13
| | | | | | | | | | | | * 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) Miodrag Milanovic2016-10-221-8/+8
| | | | | 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 item hilighting in debugger state view when scrolling [Vas Crabb] Vas Crabb2016-07-131-6/+17
| | | | | | better encapsulate debug_view_state::state_item also check for debugger access for reads with side effects in osborne1 and s2636
* Fix scroll in debugger state view Vas Crabb2016-07-111-6/+12
|
* simplified memory management for save states and states (nw) Miodrag Milanovic2016-07-011-2/+1
|
* Various cleanups suggested by static analyzer (nw) Miodrag Milanovic2016-04-241-6/+0
|
* clang-modernize part 1 (nw) Miodrag Milanovic2015-12-031-2/+2
|
* moved all to std::string (nw) Miodrag Milanovic2015-04-221-1/+1
|
* Bulk convert files that already had standard BSD license in my name Aaron Giles2013-10-161-31/+2
| | | | to new license tagged form.
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-17/+17
|
* Cleanups and version bump.mame0138u3 Aaron Giles2010-07-061-4/+4
|
* C++-ified the debugger views. Not quite architecturally where I would Aaron Giles2010-06-251-0/+117
like them, but it's a start. Split implementation of individual view types out to separate files. Updated all callers. Also: * fixed okim6295 memory view * changed emualloc to free resource pools from earliest to latest so that early objects can safely clean up stuff they allocated