I been playing with asm for going on 2yrs. It's fun, kewl and all of the above.
just a simply example of how it code asm in win32

.386
.model flat, stdcall
option casemap:none
include \masm32\include\windows.inc ;needed to call win API
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib

.data
MsgCaption db "Phaza7's AO",0
MsgBoxText db "Win32 Assembly is Great!",0

.code
start:
invoke MessageBox, NULL,addr MsgBoxText, addr MsgCaption, MB_OK
invoke ExitProcess, NULL
end start
complied in masm
R there any asm coders on AO!
if so I would love to hear from them
which assembler do U use?
I use masm and sometimes NASM, it's portable to Linux & Win