start some tests
[ia32rtools.git] / tests / reg_call3.asm
1 ; sub_test() has no args
2 ; need this to be able to call fastcall funcs anywhere, as fastcall may
3 ; sit in some fastcall table even when it doesn't use reg args
4
5 _text           segment para public 'CODE' use32
6
7 sub_test        proc near
8                 xor     ebx, ebx
9                 push    1
10                 jmp     fastcall_func
11 sub_test        endp
12
13 _text           ends
14
15 ; vim:expandtab