summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/blitz68k.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/blitz68k.c')
-rw-r--r--src/mame/drivers/blitz68k.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mame/drivers/blitz68k.c b/src/mame/drivers/blitz68k.c
index 35da4976f5e..a67a0770485 100644
--- a/src/mame/drivers/blitz68k.c
+++ b/src/mame/drivers/blitz68k.c
@@ -1662,9 +1662,11 @@ WRITE_LINE_MEMBER(blitz68k_state::crtc_vsync_irq5)
machine().device("maincpu")->execute().set_input_line(5, state ? ASSERT_LINE : CLEAR_LINE);
}
-const mc6845_interface mc6845_intf_irq1 =
+
+static MC6845_INTERFACE( mc6845_intf_irq1 )
{
"screen", /* screen we are acting on */
+ false, /* show border area */
4, /* number of pixels per video memory address */ /* Horizontal Display programmed to 160 characters */
NULL, /* before pixel update callback */
NULL, /* row update callback */
@@ -1676,9 +1678,10 @@ const mc6845_interface mc6845_intf_irq1 =
crtc_addr /* update address callback */
};
-const mc6845_interface mc6845_intf_irq3 =
+static MC6845_INTERFACE( mc6845_intf_irq3 )
{
"screen", /* screen we are acting on */
+ false, /* show border area */
4, /* number of pixels per video memory address */ /* Horizontal Display programmed to 160 characters */
NULL, /* before pixel update callback */
NULL, /* row update callback */
@@ -1690,9 +1693,10 @@ const mc6845_interface mc6845_intf_irq3 =
crtc_addr /* update address callback */
};
-const mc6845_interface mc6845_intf_irq5 =
+static MC6845_INTERFACE( mc6845_intf_irq5 )
{
"screen", /* screen we are acting on */
+ false, /* show border area */
4, /* number of pixels per video memory address */ /* Horizontal Display programmed to 160 characters */
NULL, /* before pixel update callback */
NULL, /* row update callback */