Вы находитесь на странице: 1из 2

2input AND gate Data Flow Model

`timescale 1ns / 1ps


module and2_gate(
input A,B,
output F
);
assign F=A&B;
endmodule
2input AND gate Structural Model
`timescale 1ns / 1ps
module and2_gate(
input A,B,
output F
);
and(F,A,B);
endmodule
2input AND gate Data Flow Model
`timescale 1ns / 1ps
module and2_gate(
input A,B,
output reg F
);
always@(A or B)
begin
F=A&B;
end
endmodule

RTL Schematic

Test Bench
`timescale 1ns / 1ps
module and2_gate_tb();
reg A,B;
wire F;
and2_gate dut(.A(A),.B(B),.F(F));
initial
begin
A=0;B=0;
#10 A=0;B=1;
#10 A=1;B=0;
#10 A=1;B=1;
end
endmodule
Timing Diagram

Вам также может понравиться