News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Don't trust Windows 10

Started by jj2007, February 22, 2020, 02:58:57 PM

Previous topic - Next topic

jj2007

include \masm32\include\masm32rt.inc ; plain Masm32 for the fans of pure assembler

.code
AppName db "Masm32:", 0
txHello db "Hello World, how are you?", 0
start:
repeat 5
fldpi
endm
invoke MessageBox, 0, addr txHello, addr AppName, MB_OK
inkey "that was cute, right?"
exit

end start


Now try the same with repeat 6 :cool: