summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <pac0446@bigpond.net.au>2015-11-16 20:26:34 +1100
committer Robbbert <pac0446@bigpond.net.au>2015-11-16 20:26:34 +1100
commita044a3309f5dccfd466ea63bd65b6a8d0b545fdf (patch)
treeeaef4e83fbfbe359552664309318f0770361e2af
parent41ea0f53eb3e4a598dd31f00cf1ea41aa2200715 (diff)
a6809: removed hack, not needed any more, and fixed recent regression. (nw)
-rw-r--r--src/mame/drivers/a6809.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mame/drivers/a6809.cpp b/src/mame/drivers/a6809.cpp
index 38a455614ca..98b57f5af99 100644
--- a/src/mame/drivers/a6809.cpp
+++ b/src/mame/drivers/a6809.cpp
@@ -148,10 +148,6 @@ WRITE8_MEMBER( a6809_state::a6809_register_w )
UINT16 temp = m_start_address;
UINT16 temq = m_cursor_address;
- // data is 18, but we need 19, to give the 20 rows needed by the SAA5050
- if (m_video_index == 9)
- data++;
-
m_crtc->register_w( space, 0, data );
// Get start address
@@ -247,7 +243,7 @@ static MACHINE_CONFIG_START( a6809, a6809_state )
MCFG_VIA6522_CB2_HANDLER(WRITELINE(a6809_state, cass_w))
MCFG_VIA6522_IRQ_HANDLER(DEVWRITELINE("maincpu", m6809e_device, irq_line))
- MCFG_MC6845_ADD("mc6845", MC6845, "screen", XTAL_4MHz / 2)
+ MCFG_MC6845_ADD("mc6845", HD6845, "screen", XTAL_4MHz / 2)
MCFG_MC6845_SHOW_BORDER_AREA(false)
MCFG_MC6845_CHAR_WIDTH(12)