/* * iecdrive.c - IEC bus handling for true drive emulaton. * * Written by * Andreas Boose * Daniel Sladic * Ettore Perazzoli * Andre Fachat * Teemu Rantanen * * This file is part of VICE, the Versatile Commodore Emulator. * See README for copyright notice. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA. * */ #ifndef VICE_IECDRIVE_H #define VICE_IECDRIVE_H #include "types.h" /* return value for iec_available_busses() (can be ored) */ #define IEC_BUS_IEC 0x01 /* serial IEC bus */ #define IEC_BUS_IEEE 0x02 /* parallel IEEE bus */ #define IEC_BUS_TCBM 0x04 /* parallel TCBM bus */ extern int iec_available_busses(void); extern void iec_update_ports_embedded(void); extern void iec_drive_write(uint8_t data, unsigned int dnr); extern uint8_t iec_drive_read(unsigned int dnr); #define PARALLEL_WRITE 0 /* write data */ #define PARALLEL_WRITE_HS 1 /* write data, set flag (cia2) */ #define PARALLEL_HS 2 /* set flag (cia2) */ extern void parallel_cable_drive_write(int port, uint8_t data, int handshake, unsigned int dnr); extern uint8_t parallel_cable_drive_read(int port, int handshake); extern void iec_fast_drive_write(uint8_t data, unsigned int dnr); extern void iec_fast_drive_direction(int direction, unsigned int dnr); extern void iec_update_cpu_bus(uint8_t data); extern void iec_update_ports(void); extern void plus4tcbm_update_pa(uint8_t byte, unsigned int dnr); extern void plus4tcbm_update_pb(uint8_t byte, unsigned int dnr); extern void plus4tcbm_update_pc(uint8_t byte, unsigned int dnr); extern uint8_t plus4tcbm_outputa[2], plus4tcbm_outputb[2], plus4tcbm_outputc[2]; #endif