如何在 x86 汇编中捕获 Tab 按操作?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话你可以使用:
If I understand correctly you can use:
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