|
|
| version 1.13, 2005/02/13 22:27:53 | version 1.15, 2009/03/23 15:02:25 |
|---|---|
| Line 1 | Line 1 |
| // #define SUPPORT_MOTORRISEUP | /* #define SUPPORT_MOTORRISEUP */ |
| enum { | enum { |
| FDCDIR_NONE = 0x00, | FDCDIR_NONE = 0x00, |
| Line 72 typedef struct { | Line 72 typedef struct { |
| #endif | #endif |
| } FDCSTAT; | } FDCSTAT; |
| #if defined(CONST_DISKIMAGE) | |
| typedef struct { | typedef struct { |
| UINT8 diskstat[4]; | |
| #if defined(CONST_DISKIMAGE) | |
| UINT8 *buffer; | UINT8 *buffer; |
| } FDCEXT; | |
| #endif | #endif |
| } FDCEXT; | |
| typedef struct { | typedef struct { |
| FDCSTAT s; | FDCSTAT s; |
| #if defined(CONST_DISKIMAGE) | |
| FDCEXT e; | FDCEXT e; |
| #endif | |
| } FDC; | } FDC; |
| Line 97 void fdc_callback(void); | Line 96 void fdc_callback(void); |
| #define fdc_callback() | #define fdc_callback() |
| #endif | #endif |
| void IOOUTCALL fdc_o(UINT port, REG8 value); // x1_fdc_w | void IOOUTCALL fdc_o(UINT port, REG8 value); |
| REG8 IOINPCALL fdc_i(UINT port); // x1_fdc_r | REG8 IOINPCALL fdc_i(UINT port); |
| void fdc_reset(void); | void fdc_reset(void); |