minor fixes
[ia32rtools.git] / tests / reg_call2.asm
1
2 _text           segment para public 'CODE' use32
3
4 sub_test        proc near
5                 push    ebp
6                 mov     ebp, esp
7                 call    fastcall_func
8                 inc     ecx
9                 pop     ebp
10                 retn
11 sub_test        endp
12
13 _text           ends
14
15 ; vim:expandtab