1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-02 18:16:08 +00:00

Corrects order-of-initialisation errors in the CPC (again), TextureBuilder, TextureTarget, Z80, MFM parser and binary tape player.

This commit is contained in:
Thomas Harte
2017-11-10 22:57:03 -05:00
parent d9e56711ce
commit cb0f58ab7a
10 changed files with 26 additions and 43 deletions

View File

@@ -11,17 +11,7 @@
using namespace CPU::Z80;
ProcessorStorage::ProcessorStorage() :
halt_mask_(0xff),
interrupt_mode_(0),
wait_line_(false),
request_status_(Interrupt::PowerOn),
last_request_status_(Interrupt::PowerOn),
irq_line_(false),
nmi_line_(false),
bus_request_line_(false),
pc_increment_(1),
scheduled_program_counter_(nullptr) {
ProcessorStorage::ProcessorStorage() {
set_flags(0xff);
}