Displaying 3 results from an estimated 3 matches for "wipe_char".
Did you mean:
widechar
2002 Jan 12
0
no echo patch
...screen
+;Martin call writechr ; Echo to screen
get_char_2: jmp short get_char
not_ascii: mov byte [FuncFlag],0
cmp al,0Dh ; Enter
@@ -1339,8 +1339,8 @@
backspace: cmp di,command_line ; Make sure there is anything
je get_char ; to erase
dec di ; Unstore one character
- mov si,wipe_char ; and erase it from the screen
- call cwritestr
+;Martin mov si,wipe_char ; and erase it from the screen
+;Martin call cwritestr
jmp short get_char_2
set_func_flag:
@@ -1494,7 +1494,7 @@
mov si,err_notfound ; Complain about missing kernel
call cwritestr
pop si ; KernelCName...
2006 Jan 08
0
isolinux.cfg location
My point demonstrated from a snippet of isolinux.asm:
; -----------------------------------------------------------------------------
; Begin data section
; -----------------------------------------------------------------------------
section .data
boot_prompt db 'boot: ', 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_noram db 'It appears your computer has less than '
asciidec dosram_k
db 'K of low ("DOS")'
db CR, LF...
2002 Feb 26
0
syslinux timeout
...-----------------------------------------------
+boot_timeout_prompt db 'boot ('
+boot_timeout_prompt_begin db '0000'
+boot_timeout_prompt_end db '): ', 0
+boot_timeout_prompt_pos db BS, BS, BS, BS, BS, BS, BS, 0
+; DTM END --------------------------------------------------
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.'
db CR, LF
db 'You cannot run Linux unless you hav...