minor fixes
[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 ; sctattr: clear_regmask=0c
8 sub_test        proc near
9                 xor     ebx, ebx
10                 push    1
11                 jmp     fastcall_func
12 sub_test        endp
13
14 _text           ends
15
16 ; vim:expandtab