如何在 x86 汇编中捕获 Tab 按操作?

发布于 2024-09-01 20:29:57 字数 221 浏览 5 评论 0原文

我正在 Windows (MASM) 上的 x86 程序集中开发一个项目,我需要以某种方式捕获制表符按下的情况,但我不确定如何在程序集中执行此操作(我是新手)。

我可以使用 int 21h 获取用户输入,但据我所知,只有当用户输入数据然后按 Enter 键时才有效。

我需要的是一种方法,这样如果用户按下 Tab 键,它将运行一个过程,然后从该过程中我可以处理需要发生的事情。有办法做到这一点吗?

I'm working on a project in x86 assembly on Windows (MASM), and I need to somehow catch tab presses, but I'm not sure how to do that in assembly (I'm new to it).

I can get get user input with int 21h, but as far as I can tell that only works if the users types the data, then presses enter.

What I need is a way so that if the user presses the tab key, it will run a proc, and then from that proc I can handle what needs to happen. Is there a way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假扮的天使 2024-09-08 20:29:57

如果我理解正确的话你可以使用:

mov ah,1 ; get char from keyboard

int 21h

cmp al, 9 ; 9 is ascii of tab

jnz Dont_Call

Call Proc_Name

Dont_Call:

(REST OF CODE)

If I understand correctly you can use:

mov ah,1 ; get char from keyboard

int 21h

cmp al, 9 ; 9 is ascii of tab

jnz Dont_Call

Call Proc_Name

Dont_Call:

(REST OF CODE)

贪了杯 2024-09-08 20:29:57

http://spike.scu.edu.au/~barry/interrupts。 html#ah01

DOS INT 21h - DOS 功能代码

AH = 01h - 从标准输入读取字符,带 ECHO

返回:AL = 读取字符

注意:检查

^C/^Break
^P 切换 DOS 内部回显打印机标志
^Z 不被解释,因此如果输入被重定向,则不会导致 EOF 字符回显到标准输出

另请参阅:AH=06h、AH=07h、AH=08h、AH=0Ah

http://spike.scu.edu.au/~barry/interrupts.html#ah01

DOS INT 21h - DOS Function Codes

AH = 01h - READ CHARACTER FROM STANDARD INPUT, WITH ECHO

Return: AL = character read

Notes:

^C/^Break are checked
^P toggles the DOS-internal echo-to-printer flag
^Z is not interpreted, thus not causing an EOF if input is redirected character is echoed to standard output

See Also: AH=06h, AH=07h, AH=08h, AH=0Ah

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文