1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +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
obviously doesn't.
*/
struct ExecutionState: public Reflection::StructImpl<Registers> {
struct ExecutionState: public Reflection::StructImpl<ExecutionState> {
ReflectableEnum(Phase,
Instruction, Stopped, Waiting, Jammed, Ready
);