|
|
| version 1.1, 2003/10/16 17:57:52 | version 1.4, 2005/02/07 14:46:11 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "i286.h" | |
| #include "pccore.h" | #include "pccore.h" |
| #include "iocore.h" | #include "iocore.h" |
| // こっちで処理するか シリンダ倍移動で誤魔化すか悩ましいところ | // こっちで処理するか シリンダ倍移動で誤魔化すか悩ましいところ |
| BYTE fdd320_stat; | UINT8 fdd320_stat; |
| static BYTE IOINPCALL fdd320_i51(UINT port) { | static REG8 IOINPCALL fdd320_i51(UINT port) { |
| (void)port; | (void)port; |
| return(0x00); | return(0x00); |
| } | } |
| static BYTE IOINPCALL fdd320_i55(UINT port) { | static REG8 IOINPCALL fdd320_i55(UINT port) { |
| fdd320_stat ^= 0xff; | fdd320_stat ^= 0xff; |
| (void)port; | (void)port; |
| return(fdd320_stat); | return(fdd320_stat); |
| } | } |