2015-07-02 11:14:30 +02:00
|
|
|
# read design
|
2014-01-29 12:15:38 +01:00
|
|
|
read_verilog counter.v
|
|
|
|
|
hierarchy -check -top counter
|
|
|
|
|
|
|
|
|
|
# the high-level stuff
|
|
|
|
|
proc; opt; memory; opt; fsm; opt
|
|
|
|
|
|
|
|
|
|
# mapping to internal cell library
|
2014-06-26 22:05:39 +02:00
|
|
|
techmap; opt
|
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
|
|
|
|
|
|
2023-08-02 23:20:29 +02:00
|
|
|
# write synthesized design
|
|
|
|
|
write_verilog synth.v
|