Tuesday, March 10, 2020

ASM: Basic Windows application in Assembly

This post shows how to create Windows application using Assembly.



Pre-requisite:



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

To link:
\masm32\bin\Link /SUBSYSTEM:WINDOWS basicwindows.obj

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

No comments:

CPP Quick Guide

Basics Hello world User input While loop If statement For loop Switch statement Read file using ifstream Write to a file using ofstr...