adholioshake
Programmer
- Feb 9, 2003
- 136
I wrote a TSR program for storing keyscan codes in a buffer, but it didn't quite work. Here is relevent code:
;( Start of code extract )
;.........
keycount dw 1 ; Counter
keyscan db 100 dup (?) ; Buffer
; Key int replaces interrupt 9 (key press)
keyint:
cli
push ax ; save registers (!)
push bx
push cx
push dx
push sp
push si
cmp keycount,100 ; Buffer full
je keyintret
in al,60h
mov bx,keycount
mov keyscan[bx],al
inc keycount
keyintret:
pushf
call cs
ldhandler ; call old int 09h
pop si
pop sp
pop dx
pop cx
pop bx
pop ax
iret
;..........
;( End of code extract )
The interrupt is replaced and works OK, but pressing a key generates two key scan codes in the buffer. The first is the actual keyscan code pressed, the second is the keyscan pressed + 128. Why does this happen ?
;( Start of code extract )
;.........
keycount dw 1 ; Counter
keyscan db 100 dup (?) ; Buffer
; Key int replaces interrupt 9 (key press)
keyint:
cli
push ax ; save registers (!)
push bx
push cx
push dx
push sp
push si
cmp keycount,100 ; Buffer full
je keyintret
in al,60h
mov bx,keycount
mov keyscan[bx],al
inc keycount
keyintret:
pushf
call cs
pop si
pop sp
pop dx
pop cx
pop bx
pop ax
iret
;..........
;( End of code extract )
The interrupt is replaced and works OK, but pressing a key generates two key scan codes in the buffer. The first is the actual keyscan code pressed, the second is the keyscan pressed + 128. Why does this happen ?