minor fixes
[ia32rtools.git] / tests / reg_call5.asm
CommitLineData
e627c4d0 1; special case of callee sharing the stack frame
2
3_text segment para public 'CODE' use32
4
5sub_test proc near
6
7var_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
17sub_test endp
18
19_text ends
20
21; vim:expandtab