diff options
author | 2019-07-11 23:42:15 +0200 | |
---|---|---|
committer | 2019-07-11 23:42:15 +0200 | |
commit | 9214a78d705f3b83c3ea45534cf1d8355c1cb9c5 (patch) | |
tree | 5b73fda7b339c0c1dcb111850fb66930602ae5d7 /src/mame/drivers/playch10.cpp | |
parent | 4faa4fb12f04143f2a7ad6d17a3489c69da2960b (diff) | |
parent | cc5d4b93059522122cb534e599b92f8e8f51225c (diff) |
Merge branch 'master' of https://github.com/mamedev/mame
Diffstat (limited to 'src/mame/drivers/playch10.cpp')
-rw-r--r-- | src/mame/drivers/playch10.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/playch10.cpp b/src/mame/drivers/playch10.cpp index 51786fb2abc..f0d17da7fda 100644 --- a/src/mame/drivers/playch10.cpp +++ b/src/mame/drivers/playch10.cpp @@ -673,6 +673,12 @@ void playch10_state::playch10(machine_config &config) PALETTE(config, "palette", FUNC(playch10_state::playch10_palette), 256); config.set_default_layout(layout_playch10); + screen_device &bottom(SCREEN(config, "bottom", SCREEN_TYPE_RASTER)); + bottom.set_refresh_hz(60); + bottom.set_size(32*8, 262); + bottom.set_visarea(0*8, 32*8-1, 0*8, 30*8-1); + bottom.set_screen_update(FUNC(playch10_state::screen_update_playch10_bottom)); + screen_device &top(SCREEN(config, "top", SCREEN_TYPE_RASTER)); top.set_refresh_hz(60); top.set_size(32*8, 262); @@ -680,12 +686,6 @@ void playch10_state::playch10(machine_config &config) top.set_screen_update(FUNC(playch10_state::screen_update_playch10_top)); top.screen_vblank().set(FUNC(playch10_state::vblank_irq)); - screen_device &bottom(SCREEN(config, "bottom", SCREEN_TYPE_RASTER)); - bottom.set_refresh_hz(60); - bottom.set_size(32*8, 262); - bottom.set_visarea(0*8, 32*8-1, 0*8, 30*8-1); - bottom.set_screen_update(FUNC(playch10_state::screen_update_playch10_bottom)); - PPU_2C03B(config, m_ppu, 0); m_ppu->set_screen("bottom"); m_ppu->set_cpu_tag("cart"); |