move notes to better place, update them
[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
7sub_test proc near
8 xor ebx, ebx
9 push 1
10 jmp fastcall_func
11sub_test endp
12
13_text ends
14
15; vim:expandtab