From f4074e0bba899c9b8151efa81b4363f26e2536c3 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 30 Apr 2022 08:38:28 -0400 Subject: [PATCH] Add basic status. --- InstructionSets/M68k/Executor.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/InstructionSets/M68k/Executor.hpp b/InstructionSets/M68k/Executor.hpp index a51af6fce..b9a28ebec 100644 --- a/InstructionSets/M68k/Executor.hpp +++ b/InstructionSets/M68k/Executor.hpp @@ -46,6 +46,8 @@ template class Executor { // Processor state. Status status_; CPU::SlicedInt32 program_counter_; + CPU::SlicedInt32 data_[8], address_[8]; + CPU::SlicedInt32 stack_pointers_[2]; }; }