如何在fasm中写入控制台?
我对装配非常陌生。我昨天才拿起它,我已经浏览了很多示例,但仍然无法自己弄清楚如何写入控制台。当我似乎以自己的方式复制它时,我总是会遇到错误。
I'm exceptionally new to assembly. I only picked it up yesterday and I've looked through many examples and still can't figure out for myself how to write to the console. I always get an error when I seem to replicate it in my own way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 C 函数。在最简单的用法中,
printf()
将字符串作为参数并将其写入标准输出。这段代码应该可以工作:
The easiest way is to use the C functions. In its simplest use,
printf()
takes a string as a parameter and writes it on the standard output.This code should work:
使用WriteConsole。
Use WriteConsole.