blob: 2c9ef7207faf43095ebaf1628020997f8021ae34 [file] [log] [blame]
module and_latch(
clock,
a_in,
b_in,
out
);
// SIGNAL DECLARATIONS
input clock;
input a_in;
input b_in;
output out;
// ASSIGN STATEMENTS
always @(posedge clock)
begin
out <= a_in & b_in;
end
endmodule