Sign in
foss-fpga-tools
/
third_party
/
vtr-verilog-to-routing
/
8744db3e817c8d372872b7207133b17b03919c03
/
.
/
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