1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Start experimenting with a possible end-of-reset interrupt?

This commit is contained in:
Thomas Harte 2023-11-24 22:41:33 -05:00
parent 2efb5236f7
commit dd135bf3fe

View File

@ -55,13 +55,14 @@ class FloppyController {
reset(); reset();
} }
hold_reset_ = hold_reset; hold_reset_ = hold_reset;
if(hold_reset_) {
pic_.apply_edge<6>(false);
}
} }
private: private:
void reset() { void reset() {
decoder_.clear(); decoder_.clear();
// TODO: And?
// pic_.apply_edge<6>(true); // pic_.apply_edge<6>(true);
} }