Read more

how deletion type mosfet works

A depletion-type MOSFET (metal-oxide-semiconductor field-effect transistor) works by controlling the flow of current between the…

Wallace Tree Encoder using Hierarchy

Wallace Tree Encoder (Verilog Code) Now a days in Analog to Digital conversion using, an analog to digital converter (ADC), con…

2-4 Decoder using all modeling style.

Basic:-- The 2-to-4 line binary decoder depicted above consists of  an array of four AND gates.   The 2 binary inputs labelled …

OR GATE Verilog Using All Modeling style

The output, Q of a “Logic OR Gate” only returns “LOW” again when  ALL  of its inputs are at a logic level “0”. In other words …

AND Gate using all modeling style

AND GATE The  AND gate  is a basic digital  l ogic gate  that implements  logical conjunction  (∧) from  mathematical logic  –…

D Flip Flop

The D flip flop is the most important flip flop from other clocked types. It ensures that at the same time, both the inputs, i…

4x1 Mux Using Ternary operator

Multiplexer   is a combinational circuit that has maximum of 2 n   data inputs, ‘n’ selection lines and single output line. One …

full adder problem

design // Code your design here // BEHAVIORAL LEVEL module full_adder (s,cy,a,b,c); input a,b,c; output s,cy;   always @(a or b…

That is All