Sign in
foss-fpga-tools
/
third_party
/
yosys
/
a30d5e1cc35791a98b2269c5e587c566fe8b0a35
/
.
/
manual
/
PRESENTATION_ExAdv
/
addshift_test.v
blob: b53271faac6ebcb20bf984091cc9063fa9c7b243 [
file
]
module
test
(
A
,
B
,
X
,
Y
);
input
[
7
:
0
]
A
,
B
;
output
[
7
:
0
]
X
=
A
+
B
;
output
[
7
:
0
]
Y
=
A
+
A
;
endmodule