1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/padring/rtl/oh_pads_corner.v
aolofsson 62e519b52a Directory strcuture change
-hdl-->rtl (more common...)
2022-06-21 14:59:53 -04:00

24 lines
713 B
Verilog

//#############################################################################
//# Function: Corner Pads #
//# Copyright: OH Project Authors. ALl rights Reserved. #
//# License: MIT (see LICENSE file in OH repository) #
//#############################################################################
module oh_pads_corner
(//feed through signals
inout vddio, // io supply
inout vssio, // io ground
inout vdd, // core supply
inout vss // common ground
);
asic_iocorner i0 (
.vddio,
.vssio,
.vdd,
.vss
);
endmodule // oh_pads_corner