am53cf96: apple GCC complained about "warning: comparison is always true due to limited range of data type". nw.

This commit is contained in:
Fabio Priuli 2013-05-24 06:35:11 +00:00
parent 740e7df6ab
commit d8126c20c4

View File

@ -94,7 +94,7 @@ WRITE8_MEMBER( am53cf96_device::write )
scsi_regs[REG_IRQSTATE] = 8; // indicate success
logerror("53cf96: reset target ID = %d (PC = %x)\n", last_id, space.device().safe_pc());
if (last_id >= 0 && last_id <= 7 && devices[last_id])
if (/*last_id >= 0 &&*/ last_id <= 7 && devices[last_id])
{
devices[last_id]->reset();
}
@ -122,7 +122,7 @@ WRITE8_MEMBER( am53cf96_device::write )
}
logerror("53cf96: command %x exec. target ID = %d (PC = %x)\n", fifo[1], last_id, space.device().safe_pc());
if (last_id >= 0 && last_id <= 7 && devices[last_id])
if (/*last_id >= 0 &&*/ last_id <= 7 && devices[last_id])
{
int length;
@ -198,7 +198,7 @@ void am53cf96_device::dma_read_data(int bytes, UINT8 *pData)
{
scsi_regs[REG_STATUS] |= 0x10; // indicate DMA finished
if (last_id >= 0 && last_id <= 7 && devices[last_id])
if (/*last_id >= 0 &&*/ last_id <= 7 && devices[last_id])
{
devices[last_id]->ReadData( pData, bytes );
}
@ -215,7 +215,7 @@ void am53cf96_device::dma_write_data(int bytes, UINT8 *pData)
scsi_regs[REG_STATUS] |= 0x10; // indicate DMA finished
if (last_id >= 0 && last_id <= 7 && devices[last_id])
if (/*last_id >= 0 &&*/ last_id <= 7 && devices[last_id])
{
devices[last_id]->WriteData( pData, bytes );
}