aboutsummaryrefslogtreecommitdiffstats
path: root/generic/examples/bitstream.py
diff options
context:
space:
mode:
authorPepijn de Vos <pepijndevos@gmail.com>2019-11-08 15:54:27 +0100
committerPepijn de Vos <pepijndevos@gmail.com>2019-11-08 15:54:27 +0100
commit7c362f292c0807b1e781922c79af94fd8b82477c (patch)
tree81d3f60003b967c46804f23a677fab7a5f25aaa8 /generic/examples/bitstream.py
parent21c09c8b8f5e0456cc4d7e8017c27d25dd676377 (diff)
downloadnextpnr-7c362f292c0807b1e781922c79af94fd8b82477c.tar.gz
nextpnr-7c362f292c0807b1e781922c79af94fd8b82477c.tar.bz2
nextpnr-7c362f292c0807b1e781922c79af94fd8b82477c.zip
dedicated output for LUT in GENERIC_SLICE
Diffstat (limited to 'generic/examples/bitstream.py')
-rw-r--r--generic/examples/bitstream.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/examples/bitstream.py b/generic/examples/bitstream.py
index 1ab94f0c..6cd63a58 100644
--- a/generic/examples/bitstream.py
+++ b/generic/examples/bitstream.py
@@ -6,7 +6,6 @@ from simple_config import K
param_map = {
("GENERIC_SLICE", "K"): ParameterConfig(write=False),
("GENERIC_SLICE", "INIT"): ParameterConfig(write=True, numeric=True, width=2**K),
- ("GENERIC_SLICE", "FF_USED"): ParameterConfig(write=True, numeric=True, width=1),
("GENERIC_IOB", "INPUT_USED"): ParameterConfig(write=True, numeric=True, width=1),
("GENERIC_IOB", "OUTPUT_USED"): ParameterConfig(write=True, numeric=True, width=1),
@@ -14,4 +13,4 @@ param_map = {
}
with open("blinky.fasm", "w") as f:
- write_fasm(ctx, param_map, f) \ No newline at end of file
+ write_fasm(ctx, param_map, f)