summaryrefslogtreecommitdiff
path: root/ldlinux.asm
diff options
context:
space:
mode:
authorhpa <hpa>2001-04-08 09:07:10 +0000
committerhpa <hpa>2001-04-08 09:07:10 +0000
commit23e0ccbb89dce12058f7f5cdfe40463bb0ffe41c (patch)
treeede1bb8f1109423f458a4e8b193a9ec0ec2621c0 /ldlinux.asm
parent95467080cd1d053063edc1ce563846772e2ac4f0 (diff)
downloadsyslinux-23e0ccbb89dce12058f7f5cdfe40463bb0ffe41c.tar.gz
Use symbolic BS instead of 08h in strings...
Diffstat (limited to 'ldlinux.asm')
-rw-r--r--ldlinux.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldlinux.asm b/ldlinux.asm
index d08bbd2d..ae0257a9 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.'