summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/flipjack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/flipjack.cpp')
-rw-r--r--src/mame/drivers/flipjack.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/flipjack.cpp b/src/mame/drivers/flipjack.cpp
index 6fa9210f59a..f99267910d5 100644
--- a/src/mame/drivers/flipjack.cpp
+++ b/src/mame/drivers/flipjack.cpp
@@ -292,8 +292,8 @@ void flipjack_state::main_map(address_map &map)
map(0x6000, 0x67ff).ram();
map(0x6800, 0x6803).rw("ppi8255", FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x7000, 0x7000).w(FUNC(flipjack_state::soundlatch_w));
- map(0x7010, 0x7010).w("crtc", FUNC(hd6845_device::address_w));
- map(0x7011, 0x7011).w("crtc", FUNC(hd6845_device::register_w));
+ map(0x7010, 0x7010).w("crtc", FUNC(hd6845s_device::address_w));
+ map(0x7011, 0x7011).w("crtc", FUNC(hd6845s_device::register_w));
map(0x7020, 0x7020).portr("DSW");
map(0x7800, 0x7800).w(FUNC(flipjack_state::layer_w));
map(0x8000, 0x9fff).rom();
@@ -439,9 +439,9 @@ void flipjack_state::flipjack(machine_config &config)
/* video hardware */
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_raw(VIDEO_CLOCK, 0x188, 0, 0x100, 0x100, 0, 0xc0); // from crtc
- screen.set_screen_update("crtc", FUNC(hd6845_device::screen_update));
+ screen.set_screen_update("crtc", FUNC(hd6845s_device::screen_update));
- hd6845_device &crtc(HD6845(config, "crtc", VIDEO_CLOCK/8));
+ hd6845s_device &crtc(HD6845S(config, "crtc", VIDEO_CLOCK/8));
crtc.set_screen("screen");
crtc.set_show_border_area(false);
crtc.set_char_width(8);