diff options
author | 2012-09-13 11:15:32 +0000 | |
---|---|---|
committer | 2012-09-13 11:15:32 +0000 | |
commit | 219e664785890f52079bae7e74543920d638796a (patch) | |
tree | 774d1ab1e7d87ae4d2c1ef335dcef24a28a7d7e8 /src/mess/includes/c65.h | |
parent | af9a5e817d3eefdda79e801056b29167ecbcdef9 (diff) |
Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT changed to be members of state classes (no whatsnew)
Diffstat (limited to 'src/mess/includes/c65.h')
-rw-r--r-- | src/mess/includes/c65.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mess/includes/c65.h b/src/mess/includes/c65.h index ff0df05c0b8..1588ba101cb 100644 --- a/src/mess/includes/c65.h +++ b/src/mess/includes/c65.h @@ -62,6 +62,8 @@ public: DECLARE_READ8_MEMBER( sid_potx_r ); DECLARE_READ8_MEMBER( sid_poty_r ); + DECLARE_MACHINE_START(c65); + DECLARE_PALETTE_INIT(c65); }; @@ -82,7 +84,7 @@ int c65_dma_read_color(running_machine &machine, int offset); void c65_vic_interrupt(running_machine &machine, int level); void c65_bankswitch_interface(running_machine &machine, int value); -MACHINE_START( c65 ); + INTERRUPT_GEN( c65_frame_interrupt ); extern const mos6526_interface c65_cia0; |