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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/* disciple.h: Routines for handling the DISCiPLE interface
Copyright (c) 2005-2011 Stuart Brady
$Id: disciple.h 4896 2013-02-23 17:44:30Z 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:
Philip: philip-fuse@shadowmagic.org.uk
Stuart: stuart.brady@gmail.com
*/
#ifndef FUSE_DISCIPLE_H
#define FUSE_DISCIPLE_H
#include <config.h>
typedef enum disciple_drive_number {
DISCIPLE_DRIVE_1 = 0,
DISCIPLE_DRIVE_2
} disciple_drive_number;
#include <libspectrum.h>
#include "fdd.h"
extern int disciple_available; /* Is the DISCiPLE available for use? */
extern int disciple_active; /* DISCiPLE enabled? */
void disciple_init( void );
void disciple_end( void );
void disciple_page( void );
void disciple_unpage( void );
libspectrum_byte disciple_sr_read( libspectrum_word port, int *attached );
void disciple_cr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte disciple_tr_read( libspectrum_word port, int *attached );
void disciple_tr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte disciple_sec_read( libspectrum_word port, int *attached );
void disciple_sec_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte disciple_dr_read( libspectrum_word port, int *attached );
void disciple_dr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte disciple_joy_read( libspectrum_word port, int *attached );
void disciple_cn_write( libspectrum_word port, libspectrum_byte b );
void disciple_net_write( libspectrum_word port, libspectrum_byte b);
libspectrum_byte disciple_boot_read( libspectrum_word port, int *attached );
void disciple_boot_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte disciple_patch_read( libspectrum_word port, int *attached );
void disciple_patch_write( libspectrum_word port, libspectrum_byte b );
void disciple_printer_write( libspectrum_word port, libspectrum_byte b );
int disciple_disk_insert( disciple_drive_number which, const char *filename,
int autoload );
int disciple_disk_eject( disciple_drive_number which );
int disciple_disk_save( disciple_drive_number which, int saveas );
int disciple_disk_write( disciple_drive_number which, const char *filename );
int disciple_disk_flip( disciple_drive_number which, int flip );
int disciple_disk_writeprotect( disciple_drive_number which, int wrprot );
fdd_t *disciple_get_fdd( disciple_drive_number which );
int disciple_unittest( void );
#endif /* #ifndef FUSE_DISCIPLE_H */
|