translate: fix an issue with ebp arg
[ia32rtools.git] / tests / reg_call4.asm
diff --git a/tests/reg_call4.asm b/tests/reg_call4.asm
new file mode 100644 (file)
index 0000000..b409416
--- /dev/null
@@ -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