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/pasopia7.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/pasopia7.cpp')
-rw-r--r-- | src/mame/drivers/pasopia7.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/pasopia7.cpp b/src/mame/drivers/pasopia7.cpp index 68e16212e61..0351ad59f16 100644 --- a/src/mame/drivers/pasopia7.cpp +++ b/src/mame/drivers/pasopia7.cpp @@ -815,14 +815,14 @@ WRITE8_MEMBER( pasopia7_state::video_misc_w ) ---- x--- pal disable ---- xx-- palette selector (both bits enables this, odd hook-up) */ -// if(data & 2) -// { -// printf("VIDEO MISC %02x\n",data); -// debugger_break(device->machine()); -// } + //if(data & 2) + //{ + // printf("VIDEO MISC %02x\n",data); + // machine().debugger().debug_break(); + //} m_cursor_blink = data & 0x20; m_attr_wrap = data & 0x10; -// m_pal_sel = data & 0x02; + //m_pal_sel = data & 0x02; } WRITE8_MEMBER( pasopia7_state::nmi_mask_w ) |