about summary refs log tree commit diff stats
path: root/example/x86_32_mod_self.S
diff options
context:
space:
mode:
Diffstat (limited to 'example/x86_32_mod_self.S')
-rw-r--r--example/x86_32_mod_self.S20
1 files changed, 20 insertions, 0 deletions
diff --git a/example/x86_32_mod_self.S b/example/x86_32_mod_self.S
new file mode 100644
index 00000000..398438ec
--- /dev/null
+++ b/example/x86_32_mod_self.S
@@ -0,0 +1,20 @@
+main:
+    PUSH EBP
+    MOV  EBP, ESP
+    MOV  BYTE PTR [myint], 0x90
+myint:
+    INT 0x3
+
+    PUSH 0
+    PUSH title
+    PUSH msg
+    PUSH 0
+    CALL DWORD PTR [ MessageBoxA ]
+    MOV ESP, EBP
+    POP EBP
+    RET
+
+title:
+.string "Hello!"
+msg:
+.string "World!"