mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 01:30:56 +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) {
|
void write(uint8_t value) {
|
||||||
decoder_.push_back(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:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user