From cf31709ec56e6323a4467aa1832aa4e007e26267 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 1 Aug 2022 15:21:56 +0900 Subject: [PATCH] Add floppy command for modern linux --- src/floppy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/floppy.js b/src/floppy.js index 23054141..ee1f2fbb 100644 --- a/src/floppy.js +++ b/src/floppy.js @@ -249,6 +249,7 @@ FloppyController.prototype.port3F5_write = function(reg_byte) this.bytes_expecting = 1; break; case 0x05: + case 0x45: case 0xC5: this.next_command = function(args) { this.do_sector(true, args); }; this.bytes_expecting = 8;