aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/latches.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/common/latches.v')
-rw-r--r--tests/arch/common/latches.v9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/arch/common/latches.v b/tests/arch/common/latches.v
index adb5d5319..60b757103 100644
--- a/tests/arch/common/latches.v
+++ b/tests/arch/common/latches.v
@@ -1,19 +1,16 @@
-module latchp
- ( input d, clk, en, output reg q );
+module latchp ( input d, clk, en, output reg q );
always @*
if ( en )
q <= d;
endmodule
-module latchn
- ( input d, clk, en, output reg q );
+module latchn ( input d, clk, en, output reg q );
always @*
if ( !en )
q <= d;
endmodule
-module latchsr
- ( input d, clk, en, clr, pre, output reg q );
+module latchsr ( input d, clk, en, clr, pre, output reg q );
always @*
if ( clr )
q <= 1'b0;