Displaying 3 results from an estimated 3 matches for "not_ascii".
2002 Jan 12
0
no echo patch
...+++ syslinux-1.66/pxelinux.asm Sat Jan 12 18:40:34 2002
@@ -1327,7 +1327,7 @@
.not_ctrl_f: cmp di,max_cmd_len+command_line ; Check there's space
jnb get_char
stosb ; Save it
- call writechr ; Echo to 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 ; an...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...rey Hutzelman <jhutz at cmu.edu>
---
core/ui.inc | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 72 insertions(+), 0 deletions(-)
diff --git a/core/ui.inc b/core/ui.inc
index 2d44447..0e82779 100644
--- a/core/ui.inc
+++ b/core/ui.inc
@@ -125,6 +125,8 @@ not_ascii:
je print_version
cmp al,'X' & 1Fh ; <Ctrl-X>
je force_text_mode
+ cmp al,'P' & 1Fh ; <Ctrl-P>
+ je paste
cmp al,08h ; Backspace
jne get_char
backspace: cmp di,command_line ; Make sure there is anything
@@ -143,6 +145,10 @@ force_text_mode:...
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
...ian
Index: syslinux-3.71-27-g3d39943/core/ui.inc
===================================================================
--- syslinux-3.71-27-g3d39943.orig/core/ui.inc 2008-08-31 22:45:26.000000000 +0200
+++ syslinux-3.71-27-g3d39943/core/ui.inc 2008-08-31 22:51:44.000000000 +0200
@@ -108,6 +108,8 @@
not_ascii:
cmp al,0Dh ; Enter
je command_done
+ cmp al,09h ; Tab
+ je display_labels
cmp al,'F' & 1Fh ; <Ctrl-F>
je set_func_flag
%if IS_PXELINUX
@@ -142,6 +144,48 @@
mov byte [FuncFlag],1
jmp short get_char_2
+display_labels:
+ cmp word [LabelCompl],1 ; Label...