We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72ae65f commit ded2d85Copy full SHA for ded2d85
1 file changed
drbio/disk.asm
@@ -2388,6 +2388,12 @@ floppy_init:
2388
xor dx,dx ; for NEAT hard disk boot bug
2389
int_____DISK_INT
2390
int EQUIPMENT_INT ; determine equipment status
2391
+ test al,1 ; zero if we have no floppy
2392
+ jnz equip_have_floppy
2393
+ mov ax,2
2394
+ mov nfloppy,0
2395
+ jmp equip_check_des
2396
+equip_have_floppy:
2397
mov cl,6
2398
shr ax,cl ; shift down floppy bits
2399
and ax,03h ; mask for floppy
0 commit comments