yosys/docs/source/code_examples/intro/counter_outputs.ys

29 lines
537 B
Plaintext
Raw Normal View History

# read
2014-01-29 12:15:38 +01:00
read_verilog counter.v
hierarchy -check -top counter
show -notitle -format dot -prefix counter_00
2014-01-29 12:15:38 +01:00
# elaborate
proc
show -notitle -format dot -prefix counter_proc
2014-01-29 12:15:38 +01:00
opt
show -notitle -format dot -prefix counter_01
2014-01-29 12:15:38 +01:00
# mapping to internal cell library
2014-06-26 22:05:39 +02:00
techmap; opt
2014-01-29 12:15:38 +01:00
2014-06-26 22:05:39 +02:00
splitnets -ports;;
show -notitle -format dot -prefix counter_02
2014-01-29 12:15:38 +01:00
# mapping flip-flops to mycells.lib
dfflibmap -liberty mycells.lib
# mapping logic to mycells.lib
abc -liberty mycells.lib
# cleanup
clean
show -notitle -lib mycells.v -format dot -prefix counter_03