Skip to content

Commit

Permalink
Relax fdb error
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeOsborn committed Aug 16, 2023
1 parent 549747c commit ac562c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/floppy.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,10 @@ FloppyController.prototype.port3F2_write = function(value)
dbg_log("enable dma/irq: " + !!(value & 8), LOG_FLOPPY);
dbg_log("reset fdc: " + !!(value & 4), LOG_FLOPPY);
dbg_log("drive select: " + (value & 3), LOG_FLOPPY);
dbg_assert((value & 3) == 0, "guest: fdb not implemented");
if((value & 3) != 0)
{
dbg_log("guest: fdb not implemented");
}
dbg_log("DOR = " + h(value), LOG_FLOPPY);

this.dor = value;
Expand Down

0 comments on commit ac562c7

Please sign in to comment.