Saturday, 17 December 2011

Micro Wind Verilog Code for And Gate



module andgate (a,b,c);
input a,b;
output c;
and gat(c,a,b);
endmodule;

No comments:

Post a Comment