X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Freg_call4.asm;fp=tests%2Freg_call4.asm;h=b409416832261db64db3328af384968787f890c1;hb=e627c4d0268fe9237839e68463382c2919ed59fd;hp=0000000000000000000000000000000000000000;hpb=ea43585b82e86b5c393ead41963ba6c2eca157c7;p=ia32rtools.git diff --git a/tests/reg_call4.asm b/tests/reg_call4.asm new file mode 100644 index 0000000..b409416 --- /dev/null +++ b/tests/reg_call4.asm @@ -0,0 +1,12 @@ +; call a func with ebp reg-arg + +_text segment para public 'CODE' use32 + +call_test proc near + mov ebp, 1 + jmp ebpcall_func +call_test endp + +_text ends + +; vim:expandtab