1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00

Removing depracated file

-Power merged with domain
This commit is contained in:
aolofsson 2021-06-16 17:00:31 -04:00
parent 7a136c39d8
commit 4556136e7b
2 changed files with 2 additions and 62 deletions

View File

@ -32,8 +32,9 @@ module oh_padring
parameter WE_VSS = 8
)
(
//CORE SIGNALS
//CONTINUOUS GROUND
inout vss,
inout vdd,
//NORTH
inout [NO_DOMAINS-1:0] no_vddio,

View File

@ -1,61 +0,0 @@
//#############################################################################
//# Function: Core Power/Ground Pads #
//# Copyright: OH Project Authors. ALl rights Reserved. #
//# License: MIT (see LICENSE file in OH repository) #
//#############################################################################
module oh_pads_power
#(parameter NVDD = 1, // Number of vdd pads
parameter NVSS = 1, // Number of vss pads
parameter DIR = "NO" // Side: "NO", "SO", "EA", "WE"
)
(
inout vss, // core ground
inout vdd, // pre-driver supply
inout vddio, // io digital supply
inout vssio, // io ground
inout poc // power on control signal
);
`ifdef CFG_ASIC
//#############################
//# CORE VDD PADS
//#############################
genvar i;
generate
for(i=0;i<NVDD;i=i+1)
begin : g00
asic_vddpad #(.DIR(DIR))
ivdd (.vdd (vdd),
.vss (vss),
.vddio (vddio),
.vssio (vssio),
.poc (poc));
end
endgenerate
//#############################
//# CORE ROUND PADS
//#############################
generate
for(i=0;i<NVSS;i=i+1)
begin : g10
asic_vsspad #(.DIR(DIR))
ivss (
.vdd (vdd),
.vss (vss),
.vddio (vddio),
.vssio (vssio),
.poc (poc));
end
endgenerate
`endif
endmodule // oh_pads_power
// Local Variables:
// verilog-library-directories:("." "/home/aolofsson/models/verilog")
// End: