如何在 Windows 和 FASM 中写入 StdOut?

发布于 2024-12-02 03:38:30 字数 81 浏览 0 评论 0原文

问题很简单,但我似乎找不到如何做到这一点:如何在 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 技术交流群。

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

发布评论

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

评论(1

通知家属抬走 2024-12-09 03:38:30

有几个选项...

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.

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