diff options
Diffstat (limited to 'extlinux.asm')
-rw-r--r-- | extlinux.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extlinux.asm b/extlinux.asm index fffeb890..bb6215de 100644 --- a/extlinux.asm +++ b/extlinux.asm @@ -32,7 +32,8 @@ my_id equ extlinux_id ; NASM 0.98.38 croaks if these are equ's rather than macros... FILENAME_MAX_LG2 equ 8 ; log2(Max filename size Including final null) FILENAME_MAX equ (1 << FILENAME_MAX_LG2) ; Max mangled filename size -NULLFILE equ ' ' ; First char space == null filename +NULLFILE equ 0 ; Null character == empty filename +NULLOFFSET equ 0 ; Position in which to look retry_count equ 6 ; How patient are we with the disk? %assign HIGHMEM_SLOP 0 ; Avoid this much memory near the top LDLINUX_MAGIC equ 0x3eb202fe ; A random number to identify ourselves with |