How to call openlane from terminal and convert ve...
# openlane
b
How to call openlane from terminal and convert verilog file into GDS. I don't mean the way to convert user project into GDS, but any verilog file to GDS after invoking openlane from terminal?
v
If you followed this https://github.com/The-OpenROAD-Project/OpenLane#prerequisites and installed OpenLane mean, Just do
Copy code
cd OpenLane
make mount
./flow.tcl -design <desgin-name>
๐Ÿ™Œ 1
Examples refer OpenLane/designs/spm
๐Ÿ‘ 1
b
Is there any way to call sram cell in verilog other than using the conventional way of making ram array in verilog?
v
sram_macros you can find inside part of pdks
b
Is there a way to specify sram macro in verilog?
v
Just export port connection to top module by instantiating sram macro. Refer fakeram macros.v here https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/nangate45/bp_fe_top/macros.v
๐Ÿ‘ 1