Files
cea-sec-miasm/example/samples/x86_32_simple.S
T
2015-01-23 17:24:41 +01:00

13 lines
146 B
ArmAsm

main:
PUSH 0
PUSH title
PUSH msg
PUSH 0
CALL DWORD PTR [ MessageBoxA ]
RET
title:
.string "Hello!"
msg:
.string "World!"