1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 07:55:01 +00:00

Adds note-to-self re: FDC.

This commit is contained in:
Thomas Harte 2021-03-22 09:15:00 -04:00
parent 42a9dc7c2b
commit 8dbc7649aa

View File

@ -219,6 +219,18 @@ template<Model model> class ConcreteMachine:
update_audio();
GI::AY38910::Utility::write_data(ay_, *cycle.value);
}
if constexpr (model == Model::Plus3) {
switch(address) {
default: break;
case 0x3ffd:
// TODO: floppy data register.
break;
case 0x2ffd:
// TODO: floppy status register.
break;
}
}
break;
case PartialMachineCycle::Input: