Skip to content

Commit

Permalink
MOSDDBLK: always reserve 2 drives for floppies [fixes roelandjansen#21]
Browse files Browse the repository at this point in the history
This is a quick-fix that prevents HDD from moving to A:.
It is not clear why HDD does not work on A:, maybe it should?
Maybe someone else can code up the more intrusive fix.
  • Loading branch information
stsp committed Nov 5, 2017
1 parent 79fb293 commit 1f1d7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SOURCES/src/kernel/MOSDDBLK.ASM
Expand Up @@ -2560,7 +2560,7 @@ finitblk proc near
fini10:
mov bx,[hdr]
inc al ; maximum drive number --> # of units
mov es:[bx].irUnits,al ; set # of units
mov es:[bx].irUnits,2 ; set # of units
mov al,es:[bx].irDriveNumber ; starting drive number
inc al
mov [startd],al
Expand Down

0 comments on commit 1f1d7ce

Please sign in to comment.