mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
fill building parameters
This commit is contained in:
parent
7f9174f83d
commit
0c907e5afa
1 changed files with 18 additions and 3 deletions
21
make.py
21
make.py
|
@ -92,10 +92,25 @@ if __name__ == "__main__":
|
||||||
A small footprint and configurable embedded FPGA
|
A small footprint and configurable embedded FPGA
|
||||||
based in Migen/MiSoC
|
based in Migen/MiSoC
|
||||||
|
|
||||||
====== Building options: ======
|
====== Building parameters: ======
|
||||||
===============================""".format()
|
LiscopeIO
|
||||||
)
|
---------
|
||||||
|
Width: {}
|
||||||
|
|
||||||
|
LiscopeLA
|
||||||
|
---------
|
||||||
|
Width: {}
|
||||||
|
Depth: {}
|
||||||
|
Subsampler: {}
|
||||||
|
RLE: {}
|
||||||
|
===============================""".format(
|
||||||
|
soc.io.width,
|
||||||
|
soc.la.dw,
|
||||||
|
soc.la.depth,
|
||||||
|
str(soc.la.with_subsampler),
|
||||||
|
str(soc.la.with_rle)
|
||||||
|
)
|
||||||
|
)
|
||||||
# dependencies
|
# dependencies
|
||||||
if actions["all"]:
|
if actions["all"]:
|
||||||
actions["clean"] = True
|
actions["clean"] = True
|
||||||
|
|
Loading…
Reference in a new issue