This is iecdrive.h in view mode; [Download] [Up]
/* * iecdrive.c - IEC bus handling for the true 1541 emulator. * * Written by * Daniel Sladic (sladic@eecg.toronto.edu) * Andreas Boose (boose@unixserv.rz.fh-hannover.de) * Ettore Perazzoli (ettore@comm2000.it) * André Fachat (fachat@physik.tu-chemnitz.de) * Teemu Rantanen (tvr@cs.hut.fi) * * 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 _IEC_H #define _IEC_H #include "types.h" void iec_drive_write(BYTE data); BYTE iec_drive_read(void); void parallel_cable_drive_write(BYTE data, int handshake); BYTE parallel_cable_drive_read(int handshake); typedef struct { BYTE drive_bus; BYTE drive_port; BYTE drive_data; BYTE cpu_bus; BYTE cpu_port; BYTE iec_fast_1541; } iec_info_t; iec_info_t *iec_get_drive_port(void); #endif
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.