fat.bs: Smaller BPB size when not FAT32

This commit is contained in:
Nero 2020-04-22 21:45:06 +02:00
parent 63e85af62f
commit 34ef468aa9
1 changed files with 4 additions and 0 deletions

View File

@ -17,7 +17,11 @@
bpb: equ 0x080B
; Area for BPB
%ifdef FAT32
times ( 0x5A - ($-$$) ) db 0
%else
times ( 0x3E - ($-$$) ) db 0
%endif
init: xor ax, ax
mov ss, ax