--- xmil/io/dmac.c 2004/08/01 05:31:30 1.1 +++ xmil/io/dmac.c 2004/08/08 06:59:22 1.3 @@ -1,8 +1,6 @@ #include "compiler.h" #include "pccore.h" #include "iocore.h" -#include "x1_io.h" -#include "x1_fdc.h" static void setdmareaddat(void) { @@ -235,6 +233,7 @@ void IOOUTCALL dmac_o(UINT port, REG8 va dma.WR_OFF++; dma.WR_CNT--; } + (void)port; } REG8 IOINPCALL dmac_i(UINT port) { @@ -261,6 +260,7 @@ REG8 IOINPCALL dmac_i(UINT port) { } ret = (*(((UINT8 *)&dma) + dma.RR_TBL[dma.RR_OFF++])); } + (void)port; return(ret); }