Sign in
foss-fpga-tools
/
prjtrellis
/
c4c9f0d50da9e7e0919d1b0e99cb46b35e9946d7
/
.
/
minitests
/
lut
/
lut.v
blob: 2c7266a907cf9fca0c86258c1d58d75c122f74fe [
file
] [
log
] [
blame
]
module
top
(
input a
,
input b
,
input c
,
input d
,
output q
);
assign q
=
a
&
b
&
c
&
d
;
endmodule