Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题很简单,但我似乎找不到怎么做:如何在 Windows/FASM 中写入 StdOut?
网上好像没有任何文档。想法?
有几个选择...
1) 使用 WinAPI。这要么是WriteConsole ,要么是使用文件名为 CON 的 CreateFile,然后使用WriteFile
2)像在 ac 程序中一样使用 msvcrt 和printf 。