1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse synced 2026-01-28 14:20:54 +03:00
Files
fuse/disk/plusd.h
Stuart Brady 4c83f5374d +D modularisation fixes.
Legacy-ID: 2998
2007-06-17 16:20:16 +00:00

95 lines
3.0 KiB
C

/* plusd.h: Routines for handling the +D interface
Copyright (c) 2005-2007 Stuart Brady
$Id$
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: sdbrady@ntlworld.com
*/
#ifndef FUSE_PLUSD_H
#define FUSE_PLUSD_H
#include <config.h>
typedef enum plusd_drive_number {
PLUSD_DRIVE_1 = 0,
PLUSD_DRIVE_2,
} plusd_drive_number;
#ifdef HAVE_LIBDSK_H
#include <libspectrum.h>
#include "wd1770.h"
#include "periph.h"
extern int plusd_available; /* Is the +D available for use? */
extern int plusd_active; /* +D enabled? */
extern int plusd_index_pulse;
extern const periph_t plusd_peripherals[];
extern const size_t plusd_peripherals_count;
int plusd_init( void );
void plusd_end( void );
void plusd_page( void );
void plusd_unpage( void );
libspectrum_byte plusd_sr_read( libspectrum_word port, int *attached );
void plusd_cr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_tr_read( libspectrum_word port, int *attached );
void plusd_tr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_sec_read( libspectrum_word port, int *attached );
void plusd_sec_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_dr_read( libspectrum_word port, int *attached );
void plusd_dr_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_joy_read( libspectrum_word port, int *attached );
void plusd_cn_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_mem_read( libspectrum_word port, int *attached );
void plusd_mem_write( libspectrum_word port, libspectrum_byte b );
libspectrum_byte plusd_printer_read( libspectrum_word port, int *attached );
extern wd1770_fdc plusd_fdc;
#define PLUSD_NUM_DRIVES 2
extern wd1770_drive plusd_drives[ PLUSD_NUM_DRIVES ];
int plusd_disk_insert( plusd_drive_number which, const char *filename,
int autoload );
int plusd_disk_insert_default_autoload( plusd_drive_number which,
const char *filename );
int plusd_disk_eject( plusd_drive_number which, int write );
int plusd_disk_write( plusd_drive_number which, const char *filename );
int plusd_event_cmd_done( libspectrum_dword last_tstates );
int plusd_event_index( libspectrum_dword last_tstates );
#endif /* #ifndef HAVE_LIBDSK_H */
#endif /* #ifndef FUSE_PLUSD_H */