minor fixes
[ia32rtools.git] / tests / reg_save2.asm
CommitLineData
7a3c5555 1
2_text segment para public 'CODE' use32
3
4sub_test proc near
5 push ebp
6 cmp ecx, 0
7 je loc1
8 push ebx
9 xor eax, eax
10 jmp end
11loc1:
12 push ebx
13 mov eax, 1
14end:
15 pop ebx
16 pop ebp
17 retn
18sub_test endp
19
20_text ends
21
22; vim:expandtab