Latest Post
Verilog Code for AND gate with Testbench
- Get link
- X
- Other Apps
Verilog Code for AND gate Structural/Gate Level Modelling
module ANDgate(
input a,
input b,
output c
);
and(c,a,b);
endmodule
input a,
input b,
output c
);
and(c,a,b);
endmodule
//Testbench code for AND gate Structural/Gate Level Modelling
initial begin
end
Output:
Other Verilog Programs:
Go to Index of Verilog Programming
- Get link
- X
- Other Apps
Comments
Post a Comment