X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Freg_call6.asm;fp=tests%2Freg_call6.asm;h=78d62953b37990d03baf456004425f8857efb3f3;hb=c47daea41b46c1f418246d940b6edaa7567be648;hp=0000000000000000000000000000000000000000;hpb=17ed469eafaf2698cd31cdf0b2cb0e35fa799cd7;p=ia32rtools.git diff --git a/tests/reg_call6.asm b/tests/reg_call6.asm new file mode 100644 index 0000000..78d6295 --- /dev/null +++ b/tests/reg_call6.asm @@ -0,0 +1,16 @@ + +_text segment para public 'CODE' use32 + +sub_test proc near + push ecx + shl ecx, 9 + push edx + and edx, 7Fh + add ecx, 1 + call sub_test2 + retn +sub_test endp + +_text ends + +; vim:expandtab