minor fixes
[ia32rtools.git] / tests / reg_call_tail2.asm
1
2 _text           segment para public 'CODE' use32
3
4 sub_test        proc near
5
6 arg_0           = dword ptr  4
7
8                 inc     [esp+arg_0]
9                 jz      return_
10                 jmp     another_func
11 return_:
12                 retn    4
13 sub_test        endp
14
15 _text           ends
16
17 ; vim:expandtab