Thoroughly clean up the code to vastly reduce the number of compiler warnings and found and fixed several bugs in the process; Applied all mainline PCem commits; Added SCSI hard disk emulation; Commented out all unfinished machines and graphics cards; Added the AOpen AP53 and ASUS P/I-P55T2 machines as well as another Tyan 440FX machine, all three with AMI WinBIOS (patch from TheCollector1995); Added the Diamond Stealth 3D 3000 (S3 ViRGE/VX) graphics card (patch from TheCollector1995); Added the PS/2 XT IDE (AccuLogic) HDD Controller (patch from TheCollector1995); Added Microsoft/Logitech Bus Mouse emulation (patch from waltje); Overhauled the makefiles (patch from waltje); Added the Adaptec AHA-1542CF SCSI controller (patch from waltje); Added preliminary (but still unfinished) Adaptec AHA-154x SCSI controller BIOS support (patch from waltje); Added an ISABugger debugging device (patch from waltje); Added sanity checks to the Direct3D code.
38 lines
977 B
C
38 lines
977 B
C
/* Copyright holders: Toni Wilen
|
|
see COPYING for more details
|
|
*/
|
|
#ifndef __FDI2RAW_H
|
|
#define __FDI2RAW_H
|
|
|
|
#define uae_u8 uint8_t
|
|
#define uae_u16 uint16_t
|
|
#define uae_u32 uint32_t
|
|
|
|
#include <stdio.h>
|
|
typedef struct fdi FDI;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int fdi2raw_loadtrack (FDI*, uae_u16 *mfmbuf, uae_u16 *tracktiming, int track, int *tracklength, int *indexoffset, int *multirev, int mfm);
|
|
|
|
extern int fdi2raw_loadrevolution (FDI*, uae_u16 *mfmbuf, uae_u16 *tracktiming, int track, int *tracklength, int mfm);
|
|
|
|
extern FDI *fdi2raw_header(FILE *f);
|
|
extern void fdi2raw_header_free (FDI *);
|
|
extern int fdi2raw_get_last_track(FDI *);
|
|
extern int fdi2raw_get_num_sector (FDI *);
|
|
extern int fdi2raw_get_last_head(FDI *);
|
|
extern int fdi2raw_get_type (FDI *);
|
|
extern int fdi2raw_get_bit_rate (FDI *);
|
|
extern int fdi2raw_get_rotation (FDI *);
|
|
extern int fdi2raw_get_write_protect (FDI *);
|
|
extern int fdi2raw_get_tpi (FDI *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|