1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Implements multi-sector read/write.

This once again unblocks Apple HD SC Setup. Progress!
This commit is contained in:
Thomas Harte
2019-09-16 22:20:42 -04:00
parent 210129c3a1
commit 2ce1f0a3b1
4 changed files with 37 additions and 5 deletions
+2
View File
@@ -27,6 +27,8 @@ void NCR5380::write(int address, uint8_t value, bool dma_acknowledge) {
data_bus_ = value;
if(dma_request_ && dma_operation_ == DMAOperation::Send) {
if(value)
printf("!");
printf("w %02x\n", value);
dma_acknowledge_ = true;
dma_request_ = false;