Sign in
foss-fpga-tools
/
third_party
/
vtr-verilog-to-routing
/
2854baa3881e8dfdc7ef53e888a83e8a4f3ef33c
/
.
/
vtr_flow
/
benchmarks
/
verilog
/
and_latch.v
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