1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-16 18:30:32 +00:00

Remove hopeful hit.

This commit is contained in:
Thomas Harte 2023-11-16 15:48:27 -05:00
parent e1541543c3
commit 8af173c4bc

View File

@ -18,8 +18,6 @@
#include <array> #include <array>
extern template class InstructionSet::x86::Decoder<InstructionSet::x86::Model::i8086>;
namespace PCCompatible { namespace PCCompatible {
struct Registers { struct Registers {
@ -418,7 +416,7 @@ class ConcreteMachine:
IO io; IO io;
static constexpr auto model = InstructionSet::x86::Model::i8086; static constexpr auto model = InstructionSet::x86::Model::i8086;
} context; } context;
InstructionSet::x86::Decoder<Context::model> decoder; InstructionSet::x86::Decoder<InstructionSet::x86::Model::i8086> decoder;
std::pair<int, InstructionSet::x86::Instruction<false>> decoded; std::pair<int, InstructionSet::x86::Instruction<false>> decoded;
}; };