Sign in
foss-fpga-tools
/
third_party
/
vtr-verilog-to-routing
/
bb5a5a809ec21879e4eefc197c134b11cd3ac80e
/
.
/
ODIN_II
/
REGRESSION_TESTS
/
BENCHMARKS
/
BUGS
/
file_two.v
blob: 49af85db8749aceb6bc389ae927b8a5cef220494 [
file
] [
log
] [
blame
]
module
testmodule
(
a
,
b
,
c
);
input
[
31
:
0
]
a
;
input
[
31
:
0
]
b
;
output
[
31
:
0
]
c
;
assign c
=
a
&
b
;
endmodule