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
|
|
|
|
|
2023-12-13 15:08:46 -06:00
|
|
|
show -notitle -format dot -prefix counter_00
|
|
|
|
|
2014-01-29 05:15:38 -06:00
|
|
|
# the high-level stuff
|
2023-12-13 15:08:46 -06:00
|
|
|
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
|
|
|
|
2023-12-13 15:08:46 -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
|
|
|
|
|
2023-12-13 15:08:46 -06:00
|
|
|
show -notitle -lib mycells.v -format dot -prefix counter_03
|
|
|
|
|
2023-08-02 16:20:29 -05:00
|
|
|
# write synthesized design
|
|
|
|
write_verilog synth.v
|