3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-14 04:48:46 +00:00
yosys/manual/PRESENTATION_Intro/counter.ys
2014-01-29 15:56:58 +01:00

27 lines
533 B
Plaintext

# read design
read_verilog counter.v
hierarchy -check -top counter
show -stretch -format pdf -prefix counter_00
# the high-level stuff
proc; opt; memory; opt; fsm; opt
show -stretch -format pdf -prefix counter_01
# mapping to internal cell library
techmap; splitnets -ports; opt
show -stretch -format pdf -prefix counter_02
# mapping flip-flops to mycells.lib
dfflibmap -liberty mycells.lib
# mapping logic to mycells.lib
abc -liberty mycells.lib
# cleanup
clean
show -stretch -lib mycells.v -format pdf -prefix counter_03