diff options
author | H. Peter Anvin <hpa@zytor.com> | 2011-04-25 20:18:07 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2011-04-25 20:18:07 -0700 |
commit | faf815967c276bab95989d22a62b8378d7ebf6f3 (patch) | |
tree | 866a3f7028aa2196063ed0347caec7b75ccf1a7a /core/isolinux.asm | |
parent | b9f526b27b445b5a9b0845a598cc8babefed5f6d (diff) | |
download | syslinux-faf815967c276bab95989d22a62b8378d7ebf6f3.tar.gz syslinux-faf815967c276bab95989d22a62b8378d7ebf6f3.tar.xz syslinux-faf815967c276bab95989d22a62b8378d7ebf6f3.zip |
isolinux: remove broken and obsolete open_file_t
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/isolinux.asm')
-rw-r--r-- | core/isolinux.asm | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/isolinux.asm b/core/isolinux.asm index da256c3b..7a871f0e 100644 --- a/core/isolinux.asm +++ b/core/isolinux.asm @@ -52,22 +52,6 @@ vk_append: resb max_cmd_len+1 ; Command line vk_end: equ $ ; Should be <= vk_size endstruc -; -; File structure. This holds the information for each currently open file. -; - struc open_file_t -file_sector resd 1 ; Sector pointer (0 = structure free) -file_bytesleft resd 1 ; Number of bytes left -file_left resd 1 ; Number of sectors left - resd 1 ; Unused - endstruc - -%ifndef DEPEND -%if (open_file_t_size & (open_file_t_size-1)) -%error "open_file_t is not a power of 2" -%endif -%endif - ; --------------------------------------------------------------------------- ; BEGIN CODE ; --------------------------------------------------------------------------- |