mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-07-01 05:23:50 +00:00
Add power support to processor base class.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
@ -4,7 +4,8 @@
|
||||
EightBit::Processor::Processor(Memory& memory)
|
||||
: m_memory(memory),
|
||||
cycles(0),
|
||||
m_halted(false) {
|
||||
m_halted(false),
|
||||
m_power(false) {
|
||||
PC().word = 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user