diff options
Diffstat (limited to 'extlinux.asm')
| -rw-r--r-- | extlinux.asm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/extlinux.asm b/extlinux.asm index 232a58f3..8b2eff5b 100644 --- a/extlinux.asm +++ b/extlinux.asm @@ -56,7 +56,7 @@ SYMLINK_SECTORS equ 2 ; Max number of sectors in a symlink ; The following structure is used for "virtual kernels"; i.e. LILO-style ; option labels. The options we permit here are `kernel' and `append ; Since there is no room in the bottom 64K for all of these, we -; stick them at vk_seg:0000 and copy them down before we need them. +; stick them in high memory and copy them down before we need them. ; struc vkernel vk_vname: resb FILENAME_MAX ; Virtual name **MUST BE FIRST!** @@ -76,9 +76,8 @@ vk_end: equ $ ; Should be <= vk_size ; ; 0000h - main code/data segment (and BIOS segment) ; -real_mode_seg equ 4000h -cache_seg equ 3000h ; 64K area for metadata cache -vk_seg equ 2000h ; Virtual kernels +real_mode_seg equ 3000h +cache_seg equ 2000h ; 64K area for metadata cache xfer_buf_seg equ 1000h ; Bounce buffer for I/O to high mem comboot_seg equ real_mode_seg ; COMBOOT image loading zone |
