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 b开发者_C百科e any documentation online. Ideas?
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.
精彩评论