aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/tribuf.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/common/tribuf.v')
-rw-r--r--tests/arch/common/tribuf.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/arch/common/tribuf.v b/tests/arch/common/tribuf.v
index c64468253..e1d701611 100644
--- a/tests/arch/common/tribuf.v
+++ b/tests/arch/common/tribuf.v
@@ -1,8 +1,8 @@
-module tristate (en, i, o);
+module tristate(en, i, o);
input en;
input i;
output reg o;
-
+
always @(en or i)
- o <= (en)? i : 1'bZ;
+ o <= (en)? i : 1'bZ;
endmodule