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.v12
1 files changed, 5 insertions, 7 deletions
diff --git a/tests/arch/common/mul.v b/tests/arch/common/mul.v
index d5b48b1d7..437a91cfc 100644
--- a/tests/arch/common/mul.v
+++ b/tests/arch/common/mul.v
@@ -1,11 +1,9 @@
module top
(
- input [5:0] x,
- input [5:0] y,
-
- output [11:0] A,
- );
-
-assign A = x * y;
+ input [5:0] x,
+ input [5:0] y,
+ output [11:0] A,
+);
+ assign A = x * y;
endmodule