summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti990_4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti990_4.cpp')
-rw-r--r--src/mame/drivers/ti990_4.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/ti990_4.cpp b/src/mame/drivers/ti990_4.cpp
index faab4c35d81..6b21c5def9a 100644
--- a/src/mame/drivers/ti990_4.cpp
+++ b/src/mame/drivers/ti990_4.cpp
@@ -64,8 +64,8 @@ public:
DECLARE_WRITE_LINE_MEMBER( vdtkey_interrupt );
DECLARE_WRITE_LINE_MEMBER( line_interrupt );
- DECLARE_DRIVER_INIT(ti990_4);
- DECLARE_DRIVER_INIT(ti990_4v);
+ void init_ti990_4();
+ void init_ti990_4v();
DECLARE_MACHINE_RESET(ti990_4);
@@ -284,7 +284,7 @@ MACHINE_RESET_MEMBER(ti990_4_state,ti990_4)
m_maincpu->set_ready(ASSERT_LINE);
}
-DRIVER_INIT_MEMBER(ti990_4_state, ti990_4)
+void ti990_4_state::init_ti990_4()
{
m_nmi_timer = timer_alloc(NMI_TIMER_ID);
}
@@ -370,6 +370,6 @@ ROM_START(ti990_4v)
ROM_REGION(vdt911_device::chr_region_len, vdt911_chr_region, ROMREGION_ERASEFF)
ROM_END
-// YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS
-COMP( 1976, ti990_4, 0, 0, ti990_4, 0, ti990_4_state, ti990_4, "Texas Instruments", "TI Model 990/4 Microcomputer System", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1976, ti990_4v, ti990_4, 0, ti990_4v, 0, ti990_4_state, ti990_4, "Texas Instruments", "TI Model 990/4 Microcomputer System with Video Display Terminal", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
+COMP( 1976, ti990_4, 0, 0, ti990_4, 0, ti990_4_state, init_ti990_4, "Texas Instruments", "TI Model 990/4 Microcomputer System", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1976, ti990_4v, ti990_4, 0, ti990_4v, 0, ti990_4_state, init_ti990_4, "Texas Instruments", "TI Model 990/4 Microcomputer System with Video Display Terminal", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )