Pre-requisite:
- Install MASM
To assemble:
\masm32\bin\ml /c /Zd /coff int2string.asm
To link:
\masm32\bin\Link /SUBSYSTEM:CONSOLE int2string.obj
\masm32\bin\ml /c /Zd /coff int2string.asm
\masm32\bin\Link /SUBSYSTEM:CONSOLE int2string.obj
#include <iostream> #include <csignal> #include <ctime> #include <cerrno> #include <cstring> #include <unis...
2 comments:
This code does not even compile in VS2019!
I haven't tried this using Visual Studio at all. This compiles if using MASM, see this link http://www.masm32.com/
Post a Comment