diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-13 22:46:25 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-13 22:46:25 -0700 |
commit | 4cc0c3ab6541753b89cba58c345c0cae8c7d151d (patch) | |
tree | fb8904a1e48da982a6fe3eb105a5c8be20c5a342 /core/loadhigh.inc | |
parent | 95a461a83adf65aa5689b65f85330ce970121f56 (diff) | |
download | syslinux-unify-pm.tar.gz |
core: rename .text, .data and .bss to .text16, .data16, .bss16unify-pm
Rename the .text, .data and .bss sections to .text16, .data16 and
.bss16, in anticipation of being linked with compiler-generated 32-bit
code, which presumably would like to use the standard section names.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/loadhigh.inc')
-rw-r--r-- | core/loadhigh.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/loadhigh.inc b/core/loadhigh.inc index 8ff9da1c..5c9969f6 100644 --- a/core/loadhigh.inc +++ b/core/loadhigh.inc @@ -17,7 +17,7 @@ ;; Load a file into high memory ;; - section .text + section .text16 ; ; load_high: loads (the remainder of) a file into high memory. @@ -103,12 +103,12 @@ load_high: .overflow: mov si,err_nohighmem jmp abort_load - section .data + section .data16 err_nohighmem db CR, LF db 'Not enough memory to load specified image.', CR, LF, 0 - section .bss + section .bss16 alignb 2 PauseBird resw 1 - section .text + section .text16 |