Monday, March 09, 2020

ASM: Basic usage of assembly instructions

This program shows usage of basic assembly instructions add, cmp, dec, jnz, jz, mov, mul, pop, push, xor



Pre-requisite:



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

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

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

No comments:

Test page for code formatting

netsh advfirewall firewall add rule name = "RPC Endpoint Mapper" dir = in action = allow protocol = TCP localport = 1...