summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gluck2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gluck2.c')
-rw-r--r--src/mame/drivers/gluck2.c24
1 files changed, 3 insertions, 21 deletions
diff --git a/src/mame/drivers/gluck2.c b/src/mame/drivers/gluck2.c
index 7280d77b1a1..2e14e67280a 100644
--- a/src/mame/drivers/gluck2.c
+++ b/src/mame/drivers/gluck2.c
@@ -503,26 +503,6 @@ static GFXDECODE_START( gluck2 )
GFXDECODE_END
-/********************************************
-* CRTC Interface *
-********************************************/
-
-static MC6845_INTERFACE( mc6845_intf )
-{
- false, /* show border area */
- 0,0,0,0, /* visarea adjustment */
- 8, /* number of pixels per video memory address */
- NULL, /* before pixel update callback */
- NULL, /* row update callback */
- NULL, /* after pixel update callback */
- DEVCB_NULL, /* callback for display state changes */
- DEVCB_NULL, /* callback for cursor state changes */
- DEVCB_NULL, /* HSYNC callback */
- DEVCB_NULL, /* VSYNC callback */
- NULL /* update address callback */
-};
-
-
/*************************************************
* Sound Interfaces *
*************************************************/
@@ -572,7 +552,9 @@ static MACHINE_CONFIG_START( gluck2, gluck2_state )
MCFG_PALETTE_ADD("palette", 0x100)
MCFG_PALETTE_INIT_OWNER(gluck2_state, gluck2)
- MCFG_MC6845_ADD("crtc", MC6845, "screen", MASTER_CLOCK/16, mc6845_intf) /* guess */
+ MCFG_MC6845_ADD("crtc", MC6845, "screen", MASTER_CLOCK/16) /* guess */
+ MCFG_MC6845_SHOW_BORDER_AREA(false)
+ MCFG_MC6845_CHAR_WIDTH(8)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")