aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40/adffs.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ice40/adffs.v')
-rw-r--r--tests/ice40/adffs.v10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/ice40/adffs.v b/tests/ice40/adffs.v
index af7022c79..972184cfa 100644
--- a/tests/ice40/adffs.v
+++ b/tests/ice40/adffs.v
@@ -22,16 +22,6 @@ module adffn
q <= d;
endmodule
-module dffe
- ( input d, clk, en, output reg q );
- initial begin
- q = 0;
- end
- always @( posedge clk )
- if ( en )
- q <= d;
-endmodule
-
module dffsr
( input d, clk, pre, clr, output reg q );
initial begin