diff options
author | hpa <hpa> | 1998-02-14 00:26:18 +0000 |
---|---|---|
committer | hpa <hpa> | 1998-02-14 00:26:18 +0000 |
commit | e67aea1c0ccd3cc08a9110386d9b75b281941907 (patch) | |
tree | 96fc657ed4f184606ac523ac22577d442585488b /syslinux.asm | |
parent | a646738f7167df107020e84c482d65e17118f0be (diff) | |
download | syslinux-e67aea1c0ccd3cc08a9110386d9b75b281941907.tar.gz |
FAT16 support!!!
Diffstat (limited to 'syslinux.asm')
-rw-r--r-- | syslinux.asm | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/syslinux.asm b/syslinux.asm index 92163b96..40820847 100644 --- a/syslinux.asm +++ b/syslinux.asm @@ -124,9 +124,6 @@ got_cmdline: and al,al jnz filesystem_error - cmp word [bx+dpbMaxCluster],4087 ; FAT16 not supported yet - ja fat16_error - cmp word [bx+dpbSectorSize],512 ; Sector size = 512 required jne sectorsize_error @@ -139,9 +136,6 @@ hugeclust_error: filesystem_error: mov dx,msg_filesystem_err jmp die -fat16_error: - mov dx,msg_fat16_err - jmp die sectorsize_error: mov dx,msg_sectorsize_err jmp die @@ -262,7 +256,6 @@ die: section .data msg_error: db 'ERROR: $' msg_filesystem_err: db 'Filesystem not found on disk', 0Dh, 0Ah, '$' -msg_fat16_err: db 'FAT16 filesystems not supported at this time', 0Dh, 0Ah, '$' msg_sectorsize_err: db 'Sector sizes other than 512 bytes not supported', 0Dh, 0Ah, '$' msg_hugeclust_err: db 'Clusters larger than 16K not supported', 0Dh, 0Ah, '$' msg_read_err: db 'Disk read failed', 0Dh, 0Ah, '$' |