The MASM Forum

General => The Campus => Topic started by: jj2007 on February 22, 2020, 02:58:57 PM

Title: Don't trust Windows 10
Post by: jj2007 on February 22, 2020, 02:58:57 PM
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: