mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-25 16:31:42 +00:00
Add printed TODO.
This commit is contained in:
parent
9bd75464b5
commit
a6a464c240
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user