diff options
author | 2012-09-25 13:39:59 +0000 | |
---|---|---|
committer | 2012-09-25 13:39:59 +0000 | |
commit | 6c40f0f2920a208ff456d8f34f3684367ef3fd8a (patch) | |
tree | 8f6a39a908e561191d898f9dafbcb9a74967d784 /src/mess/includes/apple2.h | |
parent | b29b84dd779070e753d8e5eff6f2f548e616ef6a (diff) |
TIMER_CALLBACK_DEVICE_MEMBER modernization part 1 (no whatsnew)
Diffstat (limited to 'src/mess/includes/apple2.h')
-rw-r--r-- | src/mess/includes/apple2.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/includes/apple2.h b/src/mess/includes/apple2.h index 19671f58086..f487edfa650 100644 --- a/src/mess/includes/apple2.h +++ b/src/mess/includes/apple2.h @@ -242,6 +242,7 @@ public: DECLARE_MACHINE_START(laser128); DECLARE_MACHINE_START(space84); UINT32 screen_update_apple2(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + TIMER_DEVICE_CALLBACK_MEMBER(apple2_interrupt); }; @@ -270,8 +271,6 @@ DECLARE_WRITE8_HANDLER( apple2_c0xx_w ); DECLARE_READ8_HANDLER( apple2_c080_r ); DECLARE_WRITE8_HANDLER( apple2_c080_w ); -TIMER_DEVICE_CALLBACK( apple2_interrupt ); - INT8 apple2_slotram_r(running_machine &machine, int slotnum, int offset); void apple2_setvar(running_machine &machine, UINT32 val, UINT32 mask); |