2021-07-27 22:24:40 -04:00
|
|
|
//#############################################################################
|
|
|
|
//# Function: Power supply header switch #
|
|
|
|
//#############################################################################
|
|
|
|
//# Author: Andreas Olofsson #
|
|
|
|
//# License: MIT (see LICENSE file in OH! repository) #
|
|
|
|
//#############################################################################
|
|
|
|
|
2021-07-27 22:55:45 -04:00
|
|
|
module asic_header #(parameter PROP = "DEFAULT") (
|
2021-07-27 22:24:40 -04:00
|
|
|
input sleep, // 1 = disabled vdd
|
|
|
|
input vddin, // input supply
|
|
|
|
output vddout // gated output supply
|
|
|
|
);
|
|
|
|
|
|
|
|
// Primitive Device
|
|
|
|
pmos m0 (vddout, vssin, sleep); //d,s,g
|
|
|
|
|
|
|
|
endmodule
|