RASCSI/src/raspberrypi/scsi.cpp

59 lines
1.2 KiB
C++
Raw Normal View History

2018-05-03 13:47:57 +00:00
//---------------------------------------------------------------------------
//
// X68000 EMULATOR "XM6"
//
// Copyright (C) 2001-2006 (ytanaka@ipc-tokai.or.jp)
// Copyright (C) 2014-2020 GIMONS
2018-05-03 13:47:57 +00:00
//
// [ SCSI Common Functionality ]
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
#include "os.h"
#include "xm6.h"
#include "scsi.h"
//---------------------------------------------------------------------------
//
// Phase Acquisition
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
BUS::phase_t FASTCALL BUS::GetPhase()
{
DWORD mci;
ASSERT(this);
// Selection Phase
2018-05-03 13:47:57 +00:00
if (GetSEL()) {
return selection;
}
// Bus busy phase
2018-05-03 13:47:57 +00:00
if (!GetBSY()) {
return busfree;
}
// Get target phase from bus signal line
2018-05-03 13:47:57 +00:00
mci = GetMSG() ? 0x04 : 0x00;
mci |= GetCD() ? 0x02 : 0x00;
mci |= GetIO() ? 0x01 : 0x00;
return GetPhase(mci);
}
//---------------------------------------------------------------------------
//
// Phase Table
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
const BUS::phase_t BUS::phase_table[8] = {
dataout,
datain,
command,
status,
reserved,
reserved,
msgout,
msgin
};