aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/synth/wire.v
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-18 16:31:55 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-18 16:31:55 +0200
commit50bf32665d0d7b7054df3ce1f36aad783eaaaa83 (patch)
tree6a9e855086f2c41c0c83371ef9aaea17eddfe6d1 /ecp5/synth/wire.v
parentc80934f953a9aa185aec0f3e9b9a23296c6e682b (diff)
downloadnextpnr-50bf32665d0d7b7054df3ce1f36aad783eaaaa83.tar.gz
nextpnr-50bf32665d0d7b7054df3ce1f36aad783eaaaa83.tar.bz2
nextpnr-50bf32665d0d7b7054df3ce1f36aad783eaaaa83.zip
ecp5: Tidying up examples
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/synth/wire.v')
-rw-r--r--ecp5/synth/wire.v11
1 files changed, 0 insertions, 11 deletions
diff --git a/ecp5/synth/wire.v b/ecp5/synth/wire.v
deleted file mode 100644
index 2af68ed2..00000000
--- a/ecp5/synth/wire.v
+++ /dev/null
@@ -1,11 +0,0 @@
-module top(input a_pin, output [3:0] led_pin);
-
- wire a;
- wire [3:0] led;
-
- TRELLIS_IO #(.DIR("INPUT")) a_buf (.B(a_pin), .O(a));
- TRELLIS_IO #(.DIR("OUTPUT")) led_buf [3:0] (.B(led_pin), .I(led));
-
- //assign led[0] = !a;
- always @(posedge a) led[0] <= !led[0];
-endmodule