--- np2/io/fdd320.c 2003/10/16 17:57:52 1.1.1.1 +++ np2/io/fdd320.c 2005/02/07 14:46:11 1.4 @@ -1,24 +1,22 @@ #include "compiler.h" -#include "i286.h" #include "pccore.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; return(0x00); } -static BYTE IOINPCALL fdd320_i55(UINT port) { +static REG8 IOINPCALL fdd320_i55(UINT port) { fdd320_stat ^= 0xff; - (void)port; return(fdd320_stat); }