trunk/src/mess/drivers/apple3.c
| r31979 | r31980 | |
| 23 | 23 | #include "bus/a2bus/a2cffa.h" |
| 24 | 24 | #include "bus/a2bus/a2applicard.h" |
| 25 | 25 | #include "bus/a2bus/a2thunderclock.h" |
| 26 | #include "bus/a2bus/mouse.h" |
| 26 | 27 | |
| 27 | 28 | static ADDRESS_MAP_START( apple3_map, AS_PROGRAM, 8, apple3_state ) |
| 28 | 29 | AM_RANGE(0x0000, 0xffff) AM_READWRITE(apple3_memory_r, apple3_memory_w) |
| r31979 | r31980 | |
| 32 | 33 | SLOT_INTERFACE("cffa2", A2BUS_CFFA2_6502) /* CFFA2000 Compact Flash for Apple II (www.dreher.net), 6502 firmware */ |
| 33 | 34 | SLOT_INTERFACE("applicard", A2BUS_APPLICARD) /* PCPI Applicard */ |
| 34 | 35 | SLOT_INTERFACE("thclock", A2BUS_THUNDERCLOCK) /* ThunderWare ThunderClock Plus - driver assumes slot 2 by default */ |
| 36 | SLOT_INTERFACE("mouse", A2BUS_MOUSE) /* Apple II Mouse Card */ |
| 35 | 37 | SLOT_INTERFACE_END |
| 36 | 38 | |
| 37 | 39 | static SLOT_INTERFACE_START( a3_floppies ) |