diff options
author | 2019-09-20 00:28:19 +1000 | |
---|---|---|
committer | 2019-09-20 00:28:19 +1000 | |
commit | dac7094f3431b8f933497b0c7693e6baeb1bb75c (patch) | |
tree | 1c3dc049110c54d23dc31a1e6c1e8b11fd24e299 /src/mame/drivers/clpoker.cpp | |
parent | cc25024f791747fa17c1f06bd81c482a86aac91b (diff) |
(nw) misc cleanup:
* get rid of most assert_always
* get rid of a few MCFG_*_OVERRIDE
Diffstat (limited to 'src/mame/drivers/clpoker.cpp')
-rw-r--r-- | src/mame/drivers/clpoker.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/mame/drivers/clpoker.cpp b/src/mame/drivers/clpoker.cpp index 10a41c9ec71..372c788d257 100644 --- a/src/mame/drivers/clpoker.cpp +++ b/src/mame/drivers/clpoker.cpp @@ -27,9 +27,7 @@ There also are unpopulated locations that might fit a YM3812 and YM3014. */ #include "emu.h" -#include "screen.h" -#include "speaker.h" -#include "tilemap.h" + #include "cpu/z80/z80.h" #include "machine/i8255.h" #include "machine/nvram.h" @@ -37,6 +35,11 @@ There also are unpopulated locations that might fit a YM3812 and YM3014. #include "sound/ay8910.h" #include "video/ramdac.h" +#include "screen.h" +#include "speaker.h" +#include "tilemap.h" + + class clpoker_state : public driver_device { public: @@ -49,6 +52,12 @@ public: { } + void clpoker(machine_config &config); + +protected: + virtual void video_start() override; + +private: DECLARE_WRITE8_MEMBER(output_a_w); DECLARE_WRITE8_MEMBER(output_b_w); DECLARE_WRITE8_MEMBER(output_c_w); @@ -58,14 +67,10 @@ public: u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - void clpoker(machine_config &config); void io_map(address_map &map); void prg_map(address_map &map); void ramdac_map(address_map &map); -protected: - virtual void video_start() override; -private: TILE_GET_INFO_MEMBER(get_bg_tile_info); TILE_GET_INFO_MEMBER(get_fg_tile_info); |