1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +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>
extern template class InstructionSet::x86::Decoder<InstructionSet::x86::Model::i8086>;
namespace PCCompatible {
struct Registers {
@ -418,7 +416,7 @@ class ConcreteMachine:
IO io;
static constexpr auto model = InstructionSet::x86::Model::i8086;
} context;
InstructionSet::x86::Decoder<Context::model> decoder;
InstructionSet::x86::Decoder<InstructionSet::x86::Model::i8086> decoder;
std::pair<int, InstructionSet::x86::Instruction<false>> decoded;
};