Config file for ppa experiments

This commit is contained in:
Teo Ene 2021-03-25 10:23:21 -05:00
parent a8abd47fbc
commit 51291949d8
3 changed files with 2 additions and 5 deletions

View File

@ -1 +0,0 @@
Configuration for power/performance/area experiments, per process

View File

@ -0,0 +1 @@
`define LIB SKY130

View File

@ -2,9 +2,6 @@
// Teo Ene & David_Harris@hmc.edu 25 Feb 2021
// Measure PPA of various building blocks
// replace this with the tools setting a library path to a config/skl130 directory containing config.vh
`define LIB SKL130
module top(
input logic a1,
input logic [7:0] a8, b8,
@ -49,7 +46,7 @@ endmodule
module INVX2(input logic a, output logic y);
generate
if (LIB == SKL130)
if (LIB == SKY130)
sky130_osu_sc_12T_ms__inv_2 inv(a, y);
else if (LIB == SKL90)
scc9gena_inv_2 inv(a, y)