diff options
| author | Camille Mougey <commial@gmail.com> | 2018-12-10 12:22:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-10 12:22:52 +0100 |
| commit | c392534a4d51759cf8ac349ea873e25b424f7472 (patch) | |
| tree | 2dd12a15c7f3a038471e566d4a971b5934084a17 /example/samples | |
| parent | 68e93fbd8a637e6a2d57e4ea26a1306b14744bd6 (diff) | |
| parent | 5e620f04a458a7ff3fb72673f887c9423a40c1aa (diff) | |
| download | miasm-c392534a4d51759cf8ac349ea873e25b424f7472.tar.gz miasm-c392534a4d51759cf8ac349ea873e25b424f7472.zip | |
Merge pull request #898 from serpilliere/add_dis_examples
Add dis examples
Diffstat (limited to 'example/samples')
| -rw-r--r-- | example/samples/test_x86_32_dis.S | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/example/samples/test_x86_32_dis.S b/example/samples/test_x86_32_dis.S new file mode 100644 index 00000000..d2e77bf9 --- /dev/null +++ b/example/samples/test_x86_32_dis.S @@ -0,0 +1,12 @@ +main: + CMP EAX, 0x10 + JZ lbl2 + MOV ESI, EAX + CMOVA EAX, EBX + JMP end +lbl2: + MOV EAX, ECX + CALL 0x11223344 + INC EAX +end: + RET |