aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/anlogic/dffs.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/anlogic/dffs.v')
-rw-r--r--tests/arch/anlogic/dffs.v15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/arch/anlogic/dffs.v b/tests/arch/anlogic/dffs.v
deleted file mode 100644
index 3418787c9..000000000
--- a/tests/arch/anlogic/dffs.v
+++ /dev/null
@@ -1,15 +0,0 @@
-module dff
- ( input d, clk, output reg q );
- always @( posedge clk )
- 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