aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/mul.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/common/mul.v')
-rw-r--r--tests/arch/common/mul.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/arch/common/mul.v b/tests/arch/common/mul.v
new file mode 100644
index 000000000..437a91cfc
--- /dev/null
+++ b/tests/arch/common/mul.v
@@ -0,0 +1,9 @@
+module top
+(
+ input [5:0] x,
+ input [5:0] y,
+
+ output [11:0] A,
+);
+ assign A = x * y;
+endmodule