1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-05 08:26:28 +00:00

Ensures full 8272 instance state initialisation.

This commit is contained in:
Thomas Harte
2017-10-17 22:11:01 -04:00
parent 3944e734d3
commit 91b867a7b3
2 changed files with 28 additions and 39 deletions

View File

@@ -79,14 +79,7 @@ namespace {
i8272::i8272(BusHandler &bus_handler, Cycles clock_rate) :
Storage::Disk::MFMController(clock_rate),
bus_handler_(bus_handler),
main_status_(0),
interesting_event_mask_((int)Event8272::CommandByte),
resume_point_(0),
delay_time_(0),
head_timers_running_(0),
expects_input_(false),
drives_seeking_(0) {
bus_handler_(bus_handler) {
posit_event((int)Event8272::CommandByte);
}