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