aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/ff/ff.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples/ff/ff.v')
-rw-r--r--fpga_interchange/examples/ff/ff.v11
1 files changed, 0 insertions, 11 deletions
diff --git a/fpga_interchange/examples/ff/ff.v b/fpga_interchange/examples/ff/ff.v
deleted file mode 100644
index 1c271042..00000000
--- a/fpga_interchange/examples/ff/ff.v
+++ /dev/null
@@ -1,11 +0,0 @@
-module top(input clk, input d, input r, output reg q);
-
-always @(posedge clk)
-begin
- if(r)
- q <= 1'b0;
- else
- q <= d;
-end
-
-endmodule