diff options
author | 2012-09-18 14:45:06 +0000 | |
---|---|---|
committer | 2012-09-18 14:45:06 +0000 | |
commit | a1b116c06f4748d61e36c070356b4818b5979f3e (patch) | |
tree | a6b9e6e1e8578cc8f2d7bdd60c528f4a321d764e /src/mess/drivers/sgi_ip2.c | |
parent | 3ac43e0187323c2b55dc00c79c31bdd2d50d9b20 (diff) |
INTERRUPT_GEN -> INTERRUPT_GEN_MEMBER for MESS part (no whatsnew)
Diffstat (limited to 'src/mess/drivers/sgi_ip2.c')
-rw-r--r-- | src/mess/drivers/sgi_ip2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mess/drivers/sgi_ip2.c b/src/mess/drivers/sgi_ip2.c index ae33a8e1b42..8723c9c8507 100644 --- a/src/mess/drivers/sgi_ip2.c +++ b/src/mess/drivers/sgi_ip2.c @@ -102,6 +102,7 @@ public: DECLARE_DRIVER_INIT(sgi_ip2); virtual void machine_start(); virtual void machine_reset(); + INTERRUPT_GEN_MEMBER(sgi_ip2_vbl); }; @@ -367,7 +368,7 @@ static GENERIC_TERMINAL_INTERFACE( sgi_terminal_intf ) }; -static INTERRUPT_GEN( sgi_ip2_vbl ) +INTERRUPT_GEN_MEMBER(sgi_ip2_state::sgi_ip2_vbl) { } @@ -477,7 +478,7 @@ static MACHINE_CONFIG_START( sgi_ip2, sgi_ip2_state ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", M68020, 16000000) MCFG_CPU_PROGRAM_MAP(sgi_ip2_map) - MCFG_CPU_VBLANK_INT(TERMINAL_TAG ":" TERMINAL_SCREEN_TAG, sgi_ip2_vbl) + MCFG_CPU_VBLANK_INT_DRIVER(TERMINAL_TAG ":" TERMINAL_SCREEN_TAG, sgi_ip2_state, sgi_ip2_vbl) /* video hardware */ |