|
|
| version 1.12, 2005/02/04 06:42:11 | 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, |
| FDCDIR_TAO = 0x01, | FDCDIR_TAO = 0x01, |
| FDCDIR_IN = 0x02, | FDCDIR_IN = 0x02, |
| FDCDIR_OUT = 0x03, | FDCDIR_OUT = 0x03 |
| }; | }; |
| enum { | enum { |
| 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); |