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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user