minor fixes
[ia32rtools.git] / tests / reg_call5.asm
1 ; special case of callee sharing the stack frame
2
3 _text           segment para public 'CODE' use32
4
5 sub_test        proc near
6
7 var_8           = dword ptr -8
8
9                 push    ebp
10                 mov     ebp, esp
11                 sub     esp, 8
12                 mov     [ebp+var_8], 1
13                 call    ebpcall_func
14                 and     eax, 0
15                 leave
16                 retn
17 sub_test        endp
18
19 _text           ends
20
21 ; vim:expandtab