1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-26 15:32:04 +00:00

Add basic status.

This commit is contained in:
Thomas Harte 2022-04-30 08:38:28 -04:00
parent e4426dc952
commit f4074e0bba

View File

@ -46,6 +46,8 @@ template <Model model, typename BusHandler> class Executor {
// Processor state.
Status status_;
CPU::SlicedInt32 program_counter_;
CPU::SlicedInt32 data_[8], address_[8];
CPU::SlicedInt32 stack_pointers_[2];
};
}