如何在 Windows 和 FASM 中写入 StdOut?
问题很简单,但我似乎找不到如何做到这一点:如何在 Windows/FASM 中写入 StdOut?
网上好像没有任何文档。有想法吗?
The question is pretty simple, yet I can't seem to find how to do it: how do I write to StdOut in Windows/FASM?
There does not seem to be any documentation online. Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个选项...
1) 使用 WinAPI。这是 WriteConsole 或使用CreateFile,文件名为 CON,然后使用 WriteFile
2) 使用 msvcrt,以及 printf 就像在 ac 程序中一样。
There are a few options...
1) Use the WinAPI. This is either WriteConsole OR by using CreateFile with the filename as CON and then using WriteFile
2) Using msvcrt, and printf as you would in a c program.