RASCSI/cpp/bus.cpp

86 lines
2.6 KiB
C++
Raw Normal View History

2018-05-03 13:47:57 +00:00
//---------------------------------------------------------------------------
//
// X68000 EMULATOR "XM6"
2018-05-03 13:47:57 +00:00
//
// Copyright (C) 2001-2006 (ytanaka@ipc-tokai.or.jp)
// Copyright (C) 2014-2020 GIMONS
// Copyright (C) 2022 Uwe Seimet
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
#include "bus.h"
2018-05-03 13:47:57 +00:00
using namespace std;
2018-05-03 13:47:57 +00:00
//---------------------------------------------------------------------------
//
// Phase Acquisition
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
BUS::phase_t BUS::GetPhase()
2018-05-03 13:47:57 +00:00
{
// Selection Phase
2018-05-03 13:47:57 +00:00
if (GetSEL()) {
return phase_t::selection;
2018-05-03 13:47:57 +00:00
}
// Bus busy phase
2018-05-03 13:47:57 +00:00
if (!GetBSY()) {
return phase_t::busfree;
2018-05-03 13:47:57 +00:00
}
// Get target phase from bus signal line
int mci = GetMSG() ? 0b100 : 0b000;
mci |= GetCD() ? 0b010 : 0b000;
mci |= GetIO() ? 0b001 : 0b000;
2018-05-03 13:47:57 +00:00
return GetPhase(mci);
}
//---------------------------------------------------------------------------
//
// Determine Phase String phase enum
//
//---------------------------------------------------------------------------
const char* BUS::GetPhaseStrRaw(phase_t current_phase) {
const auto& it = phase_str_mapping.find(current_phase);
return it != phase_str_mapping.end() ? it->second : "INVALID";
}
2018-05-03 13:47:57 +00:00
//---------------------------------------------------------------------------
//
// Phase Table
// Reference Table 8: https://www.staff.uni-mainz.de/tacke/scsi/SCSI2-06.html
// This determines the phase based upon the Msg, C/D and I/O signals.
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
const array<BUS::phase_t, 8> BUS::phase_table = {
// | MSG|C/D|I/O |
phase_t::dataout, // | 0 | 0 | 0 |
phase_t::datain, // | 0 | 0 | 1 |
phase_t::command, // | 0 | 1 | 0 |
phase_t::status, // | 0 | 1 | 1 |
phase_t::reserved, // | 1 | 0 | 0 |
phase_t::reserved, // | 1 | 0 | 1 |
phase_t::msgout, // | 1 | 1 | 0 |
phase_t::msgin // | 1 | 1 | 1 |
};
//---------------------------------------------------------------------------
//
// Phase string to phase mapping
//
//---------------------------------------------------------------------------
const unordered_map<BUS::phase_t, const char*> BUS::phase_str_mapping = {
{ phase_t::busfree, "busfree" },
{ phase_t::arbitration, "arbitration" },
{ phase_t::selection, "selection" },
{ phase_t::reselection, "reselection" },
{ phase_t::command, "command" },
{ phase_t::datain, "datain" },
{ phase_t::dataout, "dataout" },
{ phase_t::status, "status" },
{ phase_t::msgin, "msgin" },
{ phase_t::msgout, "msgout" },
{ phase_t::reserved, "reserved" }
2018-05-03 13:47:57 +00:00
};