diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-06 17:37:16 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:41 +0100 |
| commit | 69ce9d7a43e60d97fb02ccef0a4f8f3aa3d427ee (patch) | |
| tree | 059f2b6f194defa5ea4bd70affd93d345d1e10e3 /example/x86_32_mod_self.S | |
| parent | 8caaa01f9a6f18a127a5825783d53b49c3a5f532 (diff) | |
| download | miasm-69ce9d7a43e60d97fb02ccef0a4f8f3aa3d427ee.tar.gz miasm-69ce9d7a43e60d97fb02ccef0a4f8f3aa3d427ee.zip | |
AsmBox: Extract assembly code from AsmBox examples
Diffstat (limited to 'example/x86_32_mod_self.S')
| -rw-r--r-- | example/x86_32_mod_self.S | 20 |
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!" |