minor fixes
[ia32rtools.git] / tests / reg_call3.asm
CommitLineData
19b07b62 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
6135d8e6 7; sctattr: clear_regmask=0c
19b07b62 8sub_test proc near
9 xor ebx, ebx
10 push 1
11 jmp fastcall_func
12sub_test endp
13
14_text ends
15
16; vim:expandtab