start some tests
[ia32rtools.git] / tests / reg_call2.asm
diff --git a/tests/reg_call2.asm b/tests/reg_call2.asm
new file mode 100644 (file)
index 0000000..6a3c94a
--- /dev/null
@@ -0,0 +1,15 @@
+
+_text           segment para public 'CODE' use32
+
+sub_test        proc near
+                push    ebp
+                mov     ebp, esp
+                call    fastcall_func
+                inc     ecx
+                pop     ebp
+                retn
+sub_test        endp
+
+_text           ends
+
+; vim:expandtab