1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/* specplus3.h: Spectrum +2A/+3 specific routines
Copyright (c) 1999-2004 Philip Kendall
$Id: specplus3.h 4353 2011-04-06 00:28:47Z zubzero $
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#ifndef FUSE_SPECPLUS3_H
#define FUSE_SPECPLUS3_H
#include <libspectrum.h>
#include "machine.h"
#include "periph.h"
#include "peripherals/disk/fdd.h"
int specplus3_port_from_ula( libspectrum_word port );
int specplus3_init( fuse_machine_info *machine );
void specplus3_765_update_fdd( void );
void specplus3_765_init( void );
void specplus3_765_reset( void );
int specplus3_plus2a_common_reset( void );
void specplus3_fdc_reset( void );
void specplus3_menu_items( void );
int specplus3_shutdown( void );
void specplus3_memoryport_write( libspectrum_word port, libspectrum_byte b );
void specplus3_memoryport2_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte specplus3_fdc_status( libspectrum_word port, int *attached );
libspectrum_byte specplus3_fdc_read( libspectrum_word port, int *attached );
void specplus3_fdc_write( libspectrum_word port, libspectrum_byte data );
int specplus3_memory_map( void );
typedef enum specplus3_drive_number {
SPECPLUS3_DRIVE_A = 0, /* First drive must be number zero */
SPECPLUS3_DRIVE_B,
} specplus3_drive_number;
int specplus3_disk_insert( specplus3_drive_number which, const char *filename,
int autoload );
int specplus3_disk_eject( specplus3_drive_number which );
int specplus3_disk_save( specplus3_drive_number which, int saveas );
int specplus3_disk_write( specplus3_drive_number which, const char *filename );
int specplus3_disk_flip( specplus3_drive_number which, int flip );
int specplus3_disk_writeprotect( specplus3_drive_number which, int wp );
fdd_t *specplus3_get_fdd( specplus3_drive_number which );
#endif /* #ifndef FUSE_SPECPLUS3_H */
|