mirror of
https://github.com/TomHarte/CLK.git
synced 2025-10-31 20:16:07 +00:00
Corrects order-of-initialisation errors in the Amstrad CPC, Vic-20, Oric, Commodore File, MFM disk controller, UEF and Commodore tape parser.
This commit is contained in:
@@ -14,9 +14,8 @@ using namespace Storage::Disk;
|
||||
|
||||
MFMController::MFMController(Cycles clock_rate) :
|
||||
Storage::Disk::Controller(clock_rate),
|
||||
crc_generator_(0x1021, 0xffff),
|
||||
data_mode_(DataMode::Scanning),
|
||||
shifter_(&crc_generator_) {
|
||||
shifter_(&crc_generator_),
|
||||
crc_generator_(0x1021, 0xffff) {
|
||||
}
|
||||
|
||||
void MFMController::process_index_hole() {
|
||||
|
||||
Reference in New Issue
Block a user