Thursday, March 05, 2020

ASM: Hello world in Windows assembly

Hello world in Windows assembly using MASM



Pre-requisite:



To assemble:
\masm32\bin\ml /c /Zd /coff hello.asm

To link:
\masm32\bin\Link /SUBSYSTEM:CONSOLE hello.obj

Reference(s):
This is shamelessly using contents from Windows Assembly Programming Tutorial  by JEFF HUANG (huang6@uiuc.edu)
x86 Disassembly - link

No comments:

Qt console hello world

Qt console hello world This guide shows how a Qt console hello world looks like. ▣ Open  Qt Creator  and click on  Create Project... ...