|
|
| version 1.12, 2004/05/07 11:42:29 | version 1.14, 2004/08/02 11:47:30 |
|---|---|
| Line 739 static void IOOUTCALL fdc_o94(UINT port, | Line 739 static void IOOUTCALL fdc_o94(UINT port, |
| static REG8 IOINPCALL fdc_i90(UINT port) { | static REG8 IOINPCALL fdc_i90(UINT port) { |
| TRACEOUT(("fdc in %.2x %.2x [%.4x:%.4x]", port, fdc.status, | // TRACEOUT(("fdc in %.2x %.2x [%.4x:%.4x]", port, fdc.status, |
| CPU_CS, CPU_IP)); | // CPU_CS, CPU_IP)); |
| if (((port >> 4) ^ fdc.chgreg) & 1) { | if (((port >> 4) ^ fdc.chgreg) & 1) { |
| return(0xff); | return(0xff); |
| Line 771 static REG8 IOINPCALL fdc_i94(UINT port) | Line 771 static REG8 IOINPCALL fdc_i94(UINT port) |
| if (((port >> 4) ^ fdc.chgreg) & 1) { | if (((port >> 4) ^ fdc.chgreg) & 1) { |
| return(0xff); | return(0xff); |
| } | } |
| return(0x40); | if (port & 0x10) { // 94 |
| return(0x40); | |
| } | |
| else { // CC | |
| return(0x70); // readyを立てるるる | |
| } | |
| } | } |