From: John Tsiombikas Date: Thu, 2 May 2019 00:57:51 +0000 (+0300) Subject: fixed bug in boot2.s: when booting from floppy, the motor would keep X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=commitdiff_plain;h=6ddbba6fc0185f6aaf64c661c303549eb088010f fixed bug in boot2.s: when booting from floppy, the motor would keep going for ever. --- diff --git a/src/boot/boot2.s b/src/boot/boot2.s index f782d7e..5aeebaa 100644 --- a/src/boot/boot2.s +++ b/src/boot/boot2.s @@ -230,7 +230,7 @@ ldloop: # just in case we were loaded from floppy, turn all floppy motors off mov $0x3f2, %dx in %dx, %al - and $0xf0, %al + and $0xf, %al out %al, %dx mov $10, %ax