aboutsummaryrefslogtreecommitdiffstats
path: root/generic/examples/simple.v
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-04-01 20:16:29 +0100
committerDavid Shah <dave@ds0.me>2019-04-02 15:30:01 +0100
commit32327b761ab8b8c438bd91d6c32f061ffaed3454 (patch)
tree22d0674b10e29634cf072058ae0bafcd3e2d9149 /generic/examples/simple.v
parent6a383cd4c57db1f8bab6416daffdb24c0eb093c6 (diff)
downloadnextpnr-32327b761ab8b8c438bd91d6c32f061ffaed3454.tar.gz
nextpnr-32327b761ab8b8c438bd91d6c32f061ffaed3454.tar.bz2
nextpnr-32327b761ab8b8c438bd91d6c32f061ffaed3454.zip
generic: Simple working example
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'generic/examples/simple.v')
-rw-r--r--generic/examples/simple.v15
1 files changed, 0 insertions, 15 deletions
diff --git a/generic/examples/simple.v b/generic/examples/simple.v
deleted file mode 100644
index 6d337101..00000000
--- a/generic/examples/simple.v
+++ /dev/null
@@ -1,15 +0,0 @@
-(* blackbox *)
-module SLICE_LUT4(
- input I0, I1, I2, I3,
- input CLK,
- output Q
-);
-parameter INIT = 16'h0000;
-parameter FF_USED = 1'b0;
-endmodule
-
-module top(input a, output q);
-
-SLICE_LUT4 sl_i(.I0(a), .Q(q));
-
-endmodule \ No newline at end of file