--- np2/cbus/scsiio.h 2004/01/22 01:10:03 1.1 +++ np2/cbus/scsiio.h 2007/11/03 00:00:19 1.3 @@ -4,7 +4,7 @@ typedef struct { UINT port; UINT phase; - BYTE reg[0x30]; + UINT8 reg[0x30]; UINT8 auxstatus; UINT8 scsistatus; UINT8 membank; @@ -14,9 +14,9 @@ typedef struct { UINT cmdpos; UINT wrdatpos; UINT rddatpos; - BYTE cmd[12]; - BYTE data[0x10000]; - BYTE bios[2][0x2000]; + UINT8 cmd[12]; + UINT8 data[0x10000]; + UINT8 bios[2][0x2000]; } _SCSIIO, *SCSIIO; @@ -28,7 +28,7 @@ extern _SCSIIO scsiio; void scsiioint(NEVENTITEM item); -void scsiio_reset(void); +void scsiio_reset(const NP2CFG *pConfig); void scsiio_bind(void); #ifdef __cplusplus