summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* OS X debugger: Update window titles when restoring configuration for ↵ AJR2019-03-272-0/+2
| | | | disassembly and memory viewers
* How to remove unwanted macros, or: getting out of discovered "check" (nw) AJR2018-06-291-0/+2
| | | | This fixes the OS X build.
* Eliminate machine().firstcpu (nw) AJR2018-01-041-1/+1
|
* stupid API, I'll fix this one day (nw) Vas Crabb2017-07-231-1/+1
|
* cocoa debugger: save/restore console split positions Vas Crabb2017-07-213-2/+25
|
* * Make XML file a class of its own managed with smart poitners Vas Crabb2017-07-213-7/+24
| | | | * Save/restore a little more of Cocoa debugger state
* * Save/restore more Cocoa debugger state Vas Crabb2017-07-2110-9/+111
| | | | | | * Fix some Cocoa debugger desync issues - Scroll to selection on gaining focus by keyboard (e.g. tab) only - Fixes jump on clicking a memory or disasm view that you've scrolled
* Added basic support for saving/restoring Cocoa debugger window state, ↵ Vas Crabb2017-07-2018-1/+231
| | | | compatible with Qt debugger where possible
* Misc fixes (nw) Olivier Galibert2017-07-031-1/+1
|
* dimemory: Lift the cap on the number of address spaces per device [O. Galibert] Olivier Galibert2017-07-031-1/+1
|
* Move static data out of devices into the device types. This is a ↵ Vas Crabb2017-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | significant change, so please pay attention. The core changes are: * Short name, full name and source file are no longer members of device_t, they are part of the device type * MACHINE_COFIG_START no longer needs a driver class * MACHINE_CONFIG_DERIVED_CLASS is no longer necessary * Specify the state class you want in the GAME/COMP/CONS line * The compiler will work out the base class where the driver init member is declared * There is one static device type object per driver rather than one per machine configuration Use DECLARE_DEVICE_TYPE or DECLARE_DEVICE_TYPE_NS to declare device type. * DECLARE_DEVICE_TYPE forward-declares teh device type and class, and declares extern object finders. * DECLARE_DEVICE_TYPE_NS is for devices classes in namespaces - it doesn't forward-declare the device type. Use DEFINE_DEVICE_TYPE or DEFINE_DEVICE_TYPE_NS to define device types. * These macros declare storage for the static data, and instantiate the device type and device finder templates. The rest of the changes are mostly just moving stuff out of headers that shouldn't be there, renaming stuff for consistency, and scoping stuff down where appropriate. Things I've actually messed with substantially: * More descriptive names for a lot of devices * Untangled the fantasy sound from the driver state, which necessitates breaking up sound/flip writes * Changed DECO BSMT2000 ready callback into a device delegate * Untangled Microprose 3D noise from driver state * Used object finders for CoCo multipak, KC85 D002, and Irem sound subdevices * Started to get TI-99 stuff out of the TI-990 directory and arrange bus devices properly * Started to break out common parts of Samsung ARM SoC devices * Turned some of FM, SID, SCSP DSP, EPIC12 and Voodoo cores into something resmbling C++ * Tried to make Z180 table allocation/setup a bit safer * Converted generic keyboard/terminal to not use WRITE8 - space/offset aren't relevant * Dynamically allocate generic terminal buffer so derived devices (e.g. teleprinter) can specify size * Imporved encapsulation of Z80DART channels * Refactored the SPC7110 bit table generator loop to make it more readable * Added wrappers for SNES PPU operations so members can be made protected * Factored out some boilerplate for YM chips with PSG * toaplan2 gfx * stic/intv resolution * Video System video * Out Run/Y-board sprite alignment * GIC video hookup * Amstrad CPC ROM box members * IQ151 ROM cart region * MSX cart IRQ callback resolution time * SMS passthrough control devices starting subslots I've smoke-tested several drivers, but I've probably missed something. Things I've missed will likely blow up spectacularly with failure to bind errors and the like. Let me know if there's more subtle breakage (could have happened in FM or Voodoo). And can everyone please, please try to keep stuff clean. In particular, please stop polluting the global namespace. Keep things out of headers that don't need to be there, and use things that can be scoped down rather than macros. It feels like an uphill battle trying to get this stuff under control while more of it's added.
* srcclean (nw) Vas Crabb2017-04-231-1/+1
|
* Fix OS X build (nw) AJR2017-02-1113-0/+13
|
* Remove emu.h from headers (nw) Olivier Galibert2017-02-1116-16/+0
| | | | | | | | | | | | Per Vas' request. If the compile fails for you (i'm thinking osx and windows native debuggers here in particular), add '#include "emu.h"' as first include of the cpp files that fail. Due to our use of precompilation and forced inclusion, emu.h must be included as the very first non-comment thing we do if we want to be sure msvc compiles are identical to gcc/clang ones. Doing it directly instead of through an include increases the correctness probability by a magnitude.
* OS X Cocoa debugger: Improved view scroll behavior. [Curt Coder] Curt Coder2017-01-177-0/+10
|
* OS X Cocoa debugger: Autoscroll log window. [Curt Coder] Curt Coder2017-01-171-1/+1
|
* Fix OSX build - no idea why it wasn't breaking before (nw) Vas Crabb2016-12-311-1/+1
|
* srcclean (nw) Vas Crabb2016-11-2712-77/+77
|
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-223-12/+12
| | | | | 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
* patch up on OSX Vas Crabb2016-08-013-4/+4
|
* fix osx compile (nw) Miodrag Milanovic2016-07-313-4/+4
|
* std::min and std:max instead of MIN and MAX, also some more macros converted ↵ Miodrag Milanovic2016-07-3110-32/+32
| | | | to inline functions (nw)
* Major refactoring of debugger core [Ryan Holtz] therealmogminer@gmail.com2016-06-086-30/+34
| | | | | | | | * Eliminate globals/file statics * Remove lots of stuff from global scope * Use std::function for custom command registration * Eliminate some trampolines * Build fixes from Vas Crabb and balr0g
* Fix Clang build (nw) Miodrag Milanovic2016-04-242-11/+11
|
* Various cleanups suggested by static analyzer (nw) Miodrag Milanovic2016-04-249-35/+35
|
* Iterate over core classes C++11 style AJR2016-03-312-2/+2
| | | | | | | | C++11 range-based for loops can now iterate over simple_list, tagged_list, core_options, device_t::subdevice_list, device_t::interface_list, render_primitive_list and all subclasses of the above, and much code has been refactored to use them. Most core classes that have these lists as members now have methods that return the lists themselves, replacing most of the methods that returned the object at an owned list's head. (A few have been retained due to their use in drivers or OSD.) device_t now manages subdevice and interface lists through subclasses, but has given up the work of adding and removing subdevices to machine_config. memory_manager has its tagged lists exposed, though the old rooted tag lookup methods have been removed (they were privatized already).
* To ArBee with love Vas Crabb2016-03-103-2/+16
| | | | | | | | Add common debugger commands to global menu bar [Vas Crabb] Also fix occasional crash in Copy Visible Note that copy visible, paste, toggle breakpoint, and view options still require you to use context menus in windows Debug/Run menus only work when a debugger window has focus, so Break is less useful than it could be Hope this is at least a slight improvement for you, ArBee
* Fix OSX build. (nw) Dankan18902016-01-211-1/+1
|
* reverting: Miodrag Milanovic2016-01-202-2/+2
| | | | | | | SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw)
* Revert "Fix OSX build (nw)" Miodrag Milanovic2016-01-203-5/+5
| | | | This reverts commit 8144b878ab0ba1fa2b7b9e5e00c614a9a7e58eb6.
* Fix OSX build (nw) Miodrag Milanovic2016-01-163-5/+5
|
* Fix OSX build (nw) Miodrag Milanovic2016-01-161-1/+1
|
* tags are now strings (nw) Miodrag Milanovic2016-01-162-2/+2
| | | | fix start project for custom builds in Visual Studio (nw)
* put debug_view back in machine due to issues with QT (nw) Miodrag Milanovic2016-01-122-5/+4
|
* Fix compile on OSX Miodrag Milanovic2016-01-121-0/+1
|
* created debugger_manager, now this one owns debug_view_manager (nw) Miodrag Milanovic2016-01-122-6/+6
|
* Support 64 and 80-bit floats in OS X debugger (nw) arbee2015-12-191-1/+15
|
* Support float view in OS X debugger (nw) arbee2015-11-301-0/+7
|
* First commit for issue #476 yz70s2015-11-301-2/+2
| | | | | | | | | "byte per chunk" is sostituted by "data format" data formats lesser than 9 work as before, data format 9 is 32 but floating point in the debug_view_memory class method bytes_per_chunk is substituted by get_data_format, set_bytes_per_chunk is substituted by set_data_format floating point values cannot be edited currently floating point values are available only in the windows debugger, next commit will add them to the qt debugger, osx i won't be able to do it afterwards 64 and 80 bit formats will be added
* renamed m -> mm (nw) Miodrag Milanovic2015-11-0817-0/+0
|
* Clean up some stuff that upsets GCC5 Vas Crabb2015-11-012-1/+2
|
* Fix for some configurations Vas Crabb2015-10-271-1/+1
|
* Fix build with Xcode 7 (nw) balr0g2015-09-182-3/+3
|
* Debugger fix from Judge (nw) Vas Crabb2015-07-311-0/+1
|
* Doesn't fix the crash, but it doesn't hurt either nw Vas Crabb2015-07-301-0/+3
|
* Cocoa debugger: correctly size controls for user font selection (nw) Vas Crabb2015-05-144-30/+48
|
* removed restriction link for BSD3 licensed files (nw) Miodrag Milanovic2015-05-0735-105/+0
|
* More Leopard fun (nw) Vas Crabb2015-04-101-18/+18
|
* Honour -debugger_font and -debugger_font_size in Cocoa debugger. Vas Crabb2015-04-096-13/+27
| | | | Not perfect yet - text fields and popup menus aren't sized to fit
* Add a crappy utility for editing AU effect presets Vas Crabb2015-04-071-8/+0
|