Simple Behavioral Model
module and_gate (out, in1, in2); input in1, in2; output out;
assign out = in1 & in2;
endmodule
Combinational logic
describe output as a function of inputs
Previous slide
Next slide
Back to first slide
View graphic version