summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/avt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/avt.c')
-rw-r--r--src/mame/drivers/avt.c24
1 files changed, 3 insertions, 21 deletions
diff --git a/src/mame/drivers/avt.c b/src/mame/drivers/avt.c
index 5f4aac83359..7cfcadeb0bd 100644
--- a/src/mame/drivers/avt.c
+++ b/src/mame/drivers/avt.c
@@ -847,26 +847,6 @@ static GFXDECODE_START( avt )
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 *
********************************************/
@@ -914,7 +894,9 @@ static MACHINE_CONFIG_START( avt, avt_state )
MCFG_PALETTE_ADD("palette", 8*16)
MCFG_PALETTE_INIT_OWNER(avt_state, avt)
- MCFG_MC6845_ADD("crtc", MC6845, "screen", CRTC_CLOCK, mc6845_intf) /* guess */
+ MCFG_MC6845_ADD("crtc", MC6845, "screen", CRTC_CLOCK) /* guess */
+ MCFG_MC6845_SHOW_BORDER_AREA(false)
+ MCFG_MC6845_CHAR_WIDTH(8)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")