From 23e0ccbb89dce12058f7f5cdfe40463bb0ffe41c Mon Sep 17 00:00:00 2001 From: hpa Date: Sun, 8 Apr 2001 09:07:10 +0000 Subject: [PATCH] Use symbolic BS instead of 08h in strings... --- ldlinux.asm | 2 +- pxelinux.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ldlinux.asm b/ldlinux.asm index d08bbd2..ae0257a 100644 --- a/ldlinux.asm +++ b/ldlinux.asm @@ -4126,7 +4126,7 @@ lcase_tab db 135, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138 copyright_str db ' Copyright (C) 1994-', year, ' H. Peter Anvin' db CR, LF, 0 boot_prompt db 'boot: ', 0 -wipe_char db 08h, ' ', 08h, 0 +wipe_char db BS, ' ', BS, 0 err_notfound db 'Could not find kernel image: ',0 err_notkernel db CR, LF, 'Invalid or corrupt kernel image.', CR, LF, 0 err_not386 db 'It appears your computer uses a 286 or lower CPU.' diff --git a/pxelinux.asm b/pxelinux.asm index cbd7584..2a357c1 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -4531,7 +4531,7 @@ BS equ 8 ; Backspace copyright_str db ' Copyright (C) 1994-', year, ' H. Peter Anvin' db CR, LF, 0 boot_prompt db 'boot: ', 0 -wipe_char db 08h, ' ', 08h, 0 +wipe_char db BS, ' ', BS, 0 err_notfound db 'Could not find kernel image: ',0 err_notkernel db CR, LF, 'Invalid or corrupt kernel image.', CR, LF, 0 err_not386 db 'It appears your computer uses a 286 or lower CPU.' -- 2.7.4