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

32 lines
581 B
Plaintext
Raw Normal View History

2015-07-02 04:14:30 -05:00
# read design
2014-01-29 05:15:38 -06:00
read_verilog counter.v
hierarchy -check -top counter
show -notitle -format dot -prefix counter_00
2014-01-29 05:15:38 -06:00
# the high-level stuff
proc; opt
memory; opt
fsm; opt
show -notitle -format dot -prefix counter_01
2014-01-29 05:15:38 -06:00
# mapping to internal cell library
2014-06-26 15:05:39 -05:00
techmap; opt
2014-01-29 05:15:38 -06:00
splitnets -ports;; show -notitle -format dot -prefix counter_02
2014-01-29 05:15:38 -06: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
# write synthesized design
write_verilog synth.v