Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-001
/
slot-017
/
d31c00a0658a046b6bd07171da8bc1d53c141ec5
/
.
/
OpenFPGA_task
/
micro_benchmark
/
and.v
blob: 876f1c6fe5df198fdaa959fd9612ad698808fde1 [
file
] [
log
] [
blame
]
`timescale 1ns / 1ps
module top(
a,
b,
c);
input wire a;
input wire b;
output wire c;
assign c = a & b;
endmodule