diff options
author | 2016-06-08 08:10:55 +1000 | |
---|---|---|
committer | 2016-06-08 08:10:55 +1000 | |
commit | 56bd36c5ef3960874628bc08cbfcedf4c6057a19 (patch) | |
tree | 3cce04b8c27b773befde51785210bc83673f9fd0 /src/mame/drivers/icatel.cpp | |
parent | bf281b3cad1d05c6ef863fa179d3d6ab442a163c (diff) |
Major refactoring of debugger core [Ryan Holtz]
* 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
Diffstat (limited to 'src/mame/drivers/icatel.cpp')
-rw-r--r-- | src/mame/drivers/icatel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/icatel.cpp b/src/mame/drivers/icatel.cpp index 79a4c32509d..a7ef81e9aad 100644 --- a/src/mame/drivers/icatel.cpp +++ b/src/mame/drivers/icatel.cpp @@ -171,8 +171,8 @@ WRITE8_MEMBER(icatel_state::ci8_w) READ8_MEMBER(icatel_state::ci15_r) { /* TODO: Implement-me! */ -// debugger_break(machine()); -// logerror("read: ci15\n"); + //machine().debugger().debug_break(); + //logerror("read: ci15\n"); return (1 << 3) | (1 << 0); } |