mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-05-02 22:32:35 +00:00
generic/examples: Add FASM writer Python script
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
17
generic/examples/bitstream.py
Normal file
17
generic/examples/bitstream.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from write_fasm import *
|
||||
from simple_config import K
|
||||
|
||||
# Need to tell FASM generator how to write parameters
|
||||
# (celltype, parameter) -> ParameterConfig
|
||||
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),
|
||||
("GENERIC_IOB", "ENABLE_USED"): ParameterConfig(write=True, numeric=True, width=1),
|
||||
}
|
||||
|
||||
with open("blinky.fasm", "w") as f:
|
||||
write_fasm(ctx, param_map, f)
|
||||
Reference in New Issue
Block a user