How to write hello world in assembly under Windows?
This example shows how to go directly to the Windows API and not link in the C Standard Library. global _main extern [email protected] extern [email protected] extern [email protected] section .text _main: ; DWORD bytes; mov ebp, esp sub esp, 4 ; hStdOut = GetstdHandle( STD_OUTPUT_HANDLE) push -11 call [email protected] mov ebx, eax ; WriteFile( hstdOut, message, … Read more