about summary refs log tree commit diff stats
path: root/example/samples/x86_64.S
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-01-21 17:46:26 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-01-23 17:24:43 +0100
commit7ce340c2e62d985e92c42add8ffc385d54360a91 (patch)
tree920c6d567ba941b92a4aba3cfeec72c0e80bf92c /example/samples/x86_64.S
parent9206458e0f4b815e4af68f8978d96d14632a087f (diff)
downloadmiasm-7ce340c2e62d985e92c42add8ffc385d54360a91.tar.gz
miasm-7ce340c2e62d985e92c42add8ffc385d54360a91.zip
Example/ASM: Extract asm sources to sample dir
Diffstat (limited to '')
-rw-r--r--example/samples/x86_64.S13
1 files changed, 13 insertions, 0 deletions
diff --git a/example/samples/x86_64.S b/example/samples/x86_64.S
new file mode 100644
index 00000000..d090a01b
--- /dev/null
+++ b/example/samples/x86_64.S
@@ -0,0 +1,13 @@
+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!"