minor fixes
[ia32rtools.git] / tests / reg_call4.asm
1 ; call a func with ebp reg-arg
2
3 _text           segment para public 'CODE' use32
4
5 call_test       proc near
6                 mov     ebp, 1
7                 jmp     ebpcall_func
8 call_test       endp
9
10 _text           ends
11
12 ; vim:expandtab