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

14 lines
181 B
ArmAsm

main:
MOV R9, 0x0
MOV R8, title
MOV RDX, msg
MOV RCX, 0x0
MOV RAX, QWORD PTR [ MessageBoxA ]
CALL RAX
RET
title:
.string "Hello!"
msg:
.string "World!"