1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-01 17:31:18 +00:00

Corrects use of StructImpl.

This commit is contained in:
Thomas Harte 2020-03-30 00:27:40 -04:00
parent 60aa383c95
commit 95c68c76e1

View File

@ -160,7 +160,7 @@ class ProcessorBase: public ProcessorStorage {
does not necessarily correlate with anything in a real 6502, and some of it very does not necessarily correlate with anything in a real 6502, and some of it very
obviously doesn't. obviously doesn't.
*/ */
struct ExecutionState: public Reflection::StructImpl<Registers> { struct ExecutionState: public Reflection::StructImpl<ExecutionState> {
ReflectableEnum(Phase, ReflectableEnum(Phase,
Instruction, Stopped, Waiting, Jammed, Ready Instruction, Stopped, Waiting, Jammed, Ready
); );