aboutsummaryrefslogtreecommitdiffstats
path: root/generic/viaduct/example/synth_viaduct_example.tcl
blob: a9d18f5612f56060438411c23e85aa8baeadf10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Usage
# tcl synth_viaduct_example.tcl {out.json}

yosys read_verilog -lib [file dirname [file normalize $argv0]]/example_prims.v
yosys hierarchy -check
yosys proc
yosys flatten
yosys tribuf -logic
yosys deminout
yosys synth -run coarse
yosys memory_map
yosys opt -full
yosys iopadmap -bits -inpad INBUF O:PAD -outpad OUTBUF I:PAD
yosys techmap -map +/techmap.v
yosys opt -fast
yosys dfflegalize -cell \$_DFF_P_ 0
yosys abc -lut 4 -dress
yosys clean
yosys techmap -map [file dirname [file normalize $argv0]]/example_map.v
yosys clean
yosys hierarchy -check
yosys stat

if {$argc > 0} { yosys write_json [lindex $argv 0] }