0% found this document useful (0 votes)
284 views

Design of Cmos Inverter

This document describes the design of a CMOS inverter. It defines an input and output and connects a PMOS and NMOS transistor between the power and ground supplies, with their gates tied together and to the input. When the input is high, the NMOS turns on and the PMOS turns off, pulling the output low. When the input is low, the NMOS turns off and the PMOS turns on, pulling the output high.

Uploaded by

meaow88
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
284 views

Design of Cmos Inverter

This document describes the design of a CMOS inverter. It defines an input and output and connects a PMOS and NMOS transistor between the power and ground supplies, with their gates tied together and to the input. When the input is high, the NMOS turns on and the PMOS turns off, pulling the output low. When the input is low, the NMOS turns off and the PMOS turns on, pulling the output high.

Uploaded by

meaow88
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

//DESIGN OF CMOS INVERTER

module cmos_inv(c_in, c_out);


input c_in;
output c_out;
supply1 pwr;
supply0 gnd;
pmos (c_out, pwr, c_in);
nmos (c_out, gnd, c_in);

endmodule

You might also like