mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-14 21:08:47 +00:00
Code now resides in `docs/source/code_examples`. `CHAPTER_Prog` -> `stubnets` `APPNOTE_011_Design_Investigation` -> `selections` and `show` `resources/PRESENTATION_Intro` -> `intro` `resources/PRESENTATION_ExSyn` -> `synth_flow` `resources/PRESENTATION_ExAdv` -> `techmap`, `macc`, and `selections` `resources/PRESENTATION_ExOth` -> `scrambler` and `axis` Note that generated images are not yet configured to build from the new code locations.
11 lines
300 B
Plaintext
11 lines
300 B
Plaintext
read_verilog select.v
|
|
hierarchy -check -top test
|
|
proc; opt
|
|
cd test
|
|
select -set cone_a state_a %ci*:-$dff
|
|
select -set cone_b state_b %ci*:-$dff
|
|
select -set cone_ab @cone_a @cone_b %i
|
|
show -prefix select -format dot -notitle \
|
|
-color red @cone_ab -color magenta @cone_a \
|
|
-color blue @cone_b
|