1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Cleans up commenting.

This commit is contained in:
Thomas Harte 2019-04-08 22:51:18 -04:00
parent 73c027f8e3
commit 7886fe677a

View File

@ -254,26 +254,35 @@ struct ProcessorStorageConstructor {
*/ */
void install_instructions() { void install_instructions() {
enum class Decoder { enum class Decoder {
ABCDSBCD, // Maps source and desintation registers and a register/memory selection bit to an ABCD or SBCD.
ADDSUB, // Maps a register and a register and mode to an ADD or SUB.
ADDASUBA, // Maps a destination register and a source mode and register to an ADDA or SUBA.
BRA, // Maps to a BRA. All fields are decoded at runtime.
Bcc, // Maps to a Bcc. All fields are decoded at runtime.
BTST, // Maps a source register and a destination register and mode to a BTST.
BTSTIMM, // Maps a destination mode and register to a BTST #.
CLRNEGNEGXNOT, // Maps a destination mode and register to a CLR, NEG, NEGX or NOT.
CMP, // Maps a destination register and a source mode and register to a CMP. CMP, // Maps a destination register and a source mode and register to a CMP.
CMPI, // Maps a destination mode and register to a CMPI. CMPI, // Maps a destination mode and register to a CMPI.
CMPA, // Maps a destination register and a source mode and register to a CMPA. CMPA, // Maps a destination register and a source mode and register to a CMPA.
CMPM, // Maps to a CMPM. CMPM, // Maps to a CMPM.
Decimal, DBcc, // Maps a destination register to a DBcc.
MOVE, // twelve lowest bits are register, mode, mode, register, for destination and source respectively.
MOVEtoSRCCR, // six lowest bits are [mode, register], decoding to MOVE SR/CCR JMP, // Maps a mode and register to a JMP.
BRA, // eight lowest bits are ignored, and an 'n np np' is scheduled
Bcc, // twelve lowest bits are ignored, only a PerformAction is scheduled LEA, // Maps a destination register and a source mode and register to an LEA.
LEA, // decodes register, mode, register
MOVEq, // decodes just a destination register MOVE, // Maps a source mode and register and a destination mode and register to a MOVE.
RESET, // no further decoding applied, performs reset cycle MOVEtoSRCCR, // Maps a source mode and register to a MOVE SR or MOVE CCR.
JMP, // six lowest bits are [mode, register], decoding to JMP MOVEq, // Maps a destination register to a MOVEQ.
ADDSUB,
ADDASUBA, RESET, // Maps to a RESET.
BTST, // bit 9,10,11 are register, six lowest bits are [mode, register], decoding to BTST
BTSTIMM, // six lowest bits are [mode, register], decoding to BTST #
DBcc, // the low three bits nominate a register; everything else is decoded in real time
CLRNEGNEGXNOT,
}; };
using Operation = ProcessorStorage::Operation; using Operation = ProcessorStorage::Operation;
@ -297,8 +306,8 @@ struct ProcessorStorageConstructor {
NB: a vector is used to allow easy iteration. NB: a vector is used to allow easy iteration.
*/ */
const std::vector<PatternMapping> mappings = { const std::vector<PatternMapping> mappings = {
{0xf1f0, 0x8100, Operation::SBCD, Decoder::Decimal}, // 4-171 (p275) {0xf1f0, 0xc100, Operation::ABCD, Decoder::ABCDSBCD}, // 4-3 (p107)
{0xf1f0, 0xc100, Operation::ABCD, Decoder::Decimal}, // 4-3 (p107) {0xf1f0, 0x8100, Operation::SBCD, Decoder::ABCDSBCD}, // 4-171 (p275)
// {0xf000, 0x8000, Operation::OR, Decoder::RegOpModeReg}, // 4-150 (p226) // {0xf000, 0x8000, Operation::OR, Decoder::RegOpModeReg}, // 4-150 (p226)
// {0xf000, 0xb000, Operation::EOR, Decoder::RegOpModeReg}, // 4-100 (p204) // {0xf000, 0xb000, Operation::EOR, Decoder::RegOpModeReg}, // 4-100 (p204)
@ -833,7 +842,7 @@ struct ProcessorStorageConstructor {
} break; } break;
// Decodes the format used by ABCD and SBCD. // Decodes the format used by ABCD and SBCD.
case Decoder::Decimal: { case Decoder::ABCDSBCD: {
const int destination_register = (instruction >> 9) & 7; const int destination_register = (instruction >> 9) & 7;
if(instruction & 8) { if(instruction & 8) {