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