8086汇编程序,INT 16,2

时间:2009-11-10 22:43:36

标签: assembly x86-16

我遇到了这个问题,我想知道是否按下了右移按钮,所以我有这个编码器代码:

mov ah,2
int 16h           ;calling INT 16,2 - Read Keyboard Flags interrupt      
mov ah,10000000b
shl al,7 
and al,10000000b
cmp al,ah         ;check if first bit is 1
je rshift 
jmp final


rshift:
mov ah,9
lea dx,rsh  ;rsh is a string that says that "right shift button has been pressed"
int 21h
jmp final  

final:             ; quit program
mov ax,4c00h
int 21h

为什么它不起作用?我认为问题是int 16,2不能正常工作,如果是这样的话为什么呢? 这是INT 16,2应该做的事情:

AH = 02
on return:
AL = BIOS keyboard flags (located in BIOS Data Area 40:17)

|7|6|5|4|3|2|1|0|  AL or BIOS Data Area 40:17
| | | | | | | `---- right shift key depressed
| | | | | | `----- left shift key depressed
| | | | | `------ CTRL key depressed
| | | | `------- ALT key depressed
| | | `-------- scroll-lock is active
| | `--------- num-lock is active
| `---------- caps-lock is active
`----------- insert is active

我从来没有看到消息,我在调试中查看了AL寄存器,在调用INT 16,2后它似乎没有改变。我在x86架构上运行Win 7,我是与tasm合作

3 个答案:

答案 0 :(得分:2)

你是如何测试的?

出于好奇,我做了一个简单的程序(下面的代码)。在Windows控制台下运行时,它检测到左移(Result: 2),但从未检测到右移(预期Result: 1,但只有Result: 0)。

在纯DOS(在VMWare中)下运行时,它会正确显示所有组合(0到3)。

所以它似乎是NTVDM(Windows DOS仿真)的工件,虽然我没有任何来源引用。

我的代码:

.model small

.code

start:
    mov ax, seg msg
    mov ds, ax

    mov ah, 2
    int 16h

    and al,3        ; get two lower bits - both SHIFTs
    add digit, al   ; convert to decimal

    lea dx, msg
    mov ah, 9
    int 21h

    mov ax, 4c00h
    int 21h

.data

msg     db  'Result: '
digit   db  '0'
        db  13,10,'$',0

.stack
        db  16384 dup(?)

end start

答案 1 :(得分:1)

您应该能够通过以下方式清理支票:

test al,1
jnz rshift

答案 2 :(得分:0)

我无法解释为什么您的代码无效,但您可以替换

mov ah,10000000b
shl al,7 
and al,10000000b
cmp al,ah         ;check if first bit is 1

通过

test al, 1
如果组装中有成语这样的东西,那么它会做同样的事情并且更具惯用性。

编辑: 正如迈克尔在下面的评论中指出的那样,如果使用test指令,则需要反转条件跳转。 test al, C设置ZF时,且只有按位且alC为零。