I wanted to write something basic in assembly under Windows, I\'m using NASM, but I can\'t get anything working.
How to write and compile hello world without the he
If you want to use NASM and Visual Studio's linker (link.exe) with anderstornvig's Hello World example you will have to manually link with the C Runtime Libary that contains the printf() function.
nasm -fwin32 helloworld.asm link.exe helloworld.obj libcmt.lib
Hope this helps someone.