Subversion Repositories Kolibri OS

Rev

Rev 5824 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5824 Rev 6831
Line 109... Line 109...
109
 
109
 
110
  key:                             ; key
110
  key:                             ; key
111
    mov  eax,2                     ; just read it and ignore
111
    mov  eax,2                     ; just read it and ignore
112
    mcall
112
    mcall
113
    cmp  al,0                      ; key in buffer?
113
    cmp  al,0                      ; key in buffer?
114
    je   k1                        ; yep
114
    je   .k1                       ; yep
115
    jmp  still
115
    jmp  still
116
k1: cmp  ah,'H'                    ; cap H ?
116
.k1:cmp  ah,'H'                    ; cap H ?
117
    je   k2                        ; yep
117
    je   .k2                       ; yep
118
    cmp  ah,'h'                    ; locase h ?
118
    cmp  ah,'h'                    ; locase h ?
119
    je   k2                        ; yep
119
    je   .k2                       ; yep
120
    jmp  still
120
    jmp  still
121
k2: call help                      ; show help screen
121
.k2:call help                      ; show help screen
Line 122... Line 122...
122
    jmp  still
122
    jmp  still
123
 
123
 
124
  button:                          ; button
124
  button:                          ; button