1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +00:00

Add printed TODO.

This commit is contained in:
Thomas Harte 2023-11-25 21:40:13 -05:00
parent 9bd75464b5
commit a6a464c240

View File

@ -68,6 +68,18 @@ class FloppyController {
void write(uint8_t value) {
decoder_.push_back(value);
if(decoder_.has_command()) {
using Command = Intel::i8272::CommandDecoder::Command;
switch(decoder_.command()) {
default:
printf("TODO: implement FDC command %d\n", uint8_t(decoder_.command()));
break;
// case Command::Invalid:
// break;
}
}
}
private: