3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 22:23:23 +00:00

Docs: reworking scripting_intro

Now comes *after* example_synth, with references back to it.
Includes some minor adjustment to the `fifo.ys` script to better demonstrate the `select` command.
Still needs an updated section on `show`.

Also includes some other minor updates.
This commit is contained in:
Krystine Sherwin 2024-01-18 15:33:59 +13:00
parent 74d2c918cd
commit 14b7c581fa
No known key found for this signature in database
8 changed files with 139 additions and 120 deletions

View file

@ -9,7 +9,12 @@ read_verilog -defer fifo.v
# turn command echoes on to use the log output as a console session
echo on
hierarchy -top addr_gen
select -set new_cells t:*
select -module addr_gen
select -list
select t:*
select -list
select -set new_cells %
select -clear
show -color maroon3 @new_cells -color cornflowerblue p:* -notitle -format dot -prefix addr_gen_hier
# ========================================================