diff options
author | 2012-10-04 16:42:19 +0000 | |
---|---|---|
committer | 2012-10-04 16:42:19 +0000 | |
commit | e2ed0490520f538c346c8bdaa9084bcbc43427cb (patch) | |
tree | fd34efe8eeae9434962792cd7512e9da74ed55cc /src/mess/includes/c65.h | |
parent | d0884ab0c322db2981646cb1d8226edcc40003ae (diff) |
mos6526: Implemented a nearly cycle-exact "old" CIA, which passes most of the Lorenz/VICE CIA tests. Refactored the c64/c128/vic10/cbm2 drivers and the 1571/1581 floppy drives to use the new implementation. [Curt Coder]
Diffstat (limited to 'src/mess/includes/c65.h')
-rw-r--r-- | src/mess/includes/c65.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/includes/c65.h b/src/mess/includes/c65.h index e9494b4f770..1459216fab8 100644 --- a/src/mess/includes/c65.h +++ b/src/mess/includes/c65.h @@ -93,7 +93,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); -extern const mos6526_interface c65_cia0; -extern const mos6526_interface c65_cia1; +extern const legacy_mos6526_interface c65_cia0; +extern const legacy_mos6526_interface c65_cia1; #endif /* C65_H_ */ |