summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/aim65.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-08-30 14:27:14 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-08-30 14:27:14 +0000
commitaa9bbe5371a64a1f16fdcd1faf0e00673e6f8cff (patch)
treef9346ed25dd2eb34dfe78a4014b47f85dbda32c9 /src/mess/drivers/aim65.c
parent689a84ea8ff5bdcba59f3814edb494761139c26b (diff)
Removed legacy inline_config support and updated devices using it (no whatsnew)
Diffstat (limited to 'src/mess/drivers/aim65.c')
-rw-r--r--src/mess/drivers/aim65.c34
1 files changed, 29 insertions, 5 deletions
diff --git a/src/mess/drivers/aim65.c b/src/mess/drivers/aim65.c
index 07cb1a23bde..38b164de005 100644
--- a/src/mess/drivers/aim65.c
+++ b/src/mess/drivers/aim65.c
@@ -226,6 +226,30 @@ static const cassette_interface aim65_2_cassette_interface =
NULL
};
+const dl1416_interface aim65_ds1_intf =
+{
+ aim65_update_ds1
+};
+
+const dl1416_interface aim65_ds2_intf =
+{
+ aim65_update_ds2
+};
+
+const dl1416_interface aim65_ds3_intf =
+{
+ aim65_update_ds3
+};
+
+const dl1416_interface aim65_ds4_intf =
+{
+ aim65_update_ds4
+};
+
+const dl1416_interface aim65_ds5_intf =
+{
+ aim65_update_ds5
+};
/***************************************************************************
MACHINE DRIVERS
@@ -241,11 +265,11 @@ static MACHINE_CONFIG_START( aim65, aim65_state )
MCFG_DEFAULT_LAYOUT(layout_aim65)
/* alpha-numeric display */
- MCFG_DL1416T_ADD("ds1", aim65_update_ds1)
- MCFG_DL1416T_ADD("ds2", aim65_update_ds2)
- MCFG_DL1416T_ADD("ds3", aim65_update_ds3)
- MCFG_DL1416T_ADD("ds4", aim65_update_ds4)
- MCFG_DL1416T_ADD("ds5", aim65_update_ds5)
+ MCFG_DL1416T_ADD("ds1", aim65_ds1_intf)
+ MCFG_DL1416T_ADD("ds2", aim65_ds2_intf)
+ MCFG_DL1416T_ADD("ds3", aim65_ds3_intf)
+ MCFG_DL1416T_ADD("ds4", aim65_ds4_intf)
+ MCFG_DL1416T_ADD("ds5", aim65_ds5_intf)
/* Sound - wave sound only */
MCFG_SPEAKER_STANDARD_MONO("mono")