Skip to content

Commit

Permalink
cdrom: tweak setloc and readn timings, allows Doom to boot
Browse files Browse the repository at this point in the history
  • Loading branch information
JaCzekanski committed Oct 19, 2021
1 parent 9f7807a commit 51a73c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/device/cdrom/commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void CDROM::cmdSetloc() {
return;
}

postInterrupt(3, 10000);
postInterrupt(3, 5000);
writeResponse(stat._reg);
}

Expand Down Expand Up @@ -109,7 +109,7 @@ void CDROM::cmdReadN() {
readSector = seekSector;
stat.setMode(StatusCode::Mode::Reading);

postInterrupt(3);
postInterrupt(3, 1000);
writeResponse(stat._reg);
}

Expand Down

0 comments on commit 51a73c4

Please sign in to comment.