Files
cea-sec-miasm/example/samples/x86_64.S
T
2016-04-24 01:25:38 +02:00

13 lines
188 B
ArmAsm

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