summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/tec1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/tec1.c')
-rw-r--r--src/mess/drivers/tec1.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mess/drivers/tec1.c b/src/mess/drivers/tec1.c
index a3e5d4e1457..26ea2b82a33 100644
--- a/src/mess/drivers/tec1.c
+++ b/src/mess/drivers/tec1.c
@@ -76,8 +76,6 @@ JMON ToDo:
#include "imagedev/cassette.h"
#include "tec1.lh"
-#define MACHINE_RESET_MEMBER(name) void name::machine_reset()
-#define MACHINE_START_MEMBER(name) void name::machine_start()
class tec1_state : public driver_device
{
@@ -264,13 +262,13 @@ static TIMER_CALLBACK( tec1_kbd_callback )
***************************************************************************/
-MACHINE_START_MEMBER( tec1_state )
+void tec1_state::machine_start()
{
m_kbd_timer = machine().scheduler().timer_alloc(FUNC(tec1_kbd_callback));
m_kbd_timer->adjust( attotime::zero, 0, attotime::from_hz(500) );
}
-MACHINE_RESET_MEMBER( tec1_state )
+void tec1_state::machine_reset()
{
m_kbd = 0;
}