diff options
Diffstat (limited to 'test/samples/x86_32/dg_test_07.S')
| -rw-r--r-- | test/samples/x86_32/dg_test_07.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/samples/x86_32/dg_test_07.S b/test/samples/x86_32/dg_test_07.S new file mode 100644 index 00000000..a23d5b66 --- /dev/null +++ b/test/samples/x86_32/dg_test_07.S @@ -0,0 +1,10 @@ +main: + MOV ECX, 0x1 + MOV EBX, 0x2 + JMP lbl1 +lbl1: + XCHG EBX, ECX + JMP end +end: + MOV EAX, EBX + RET |