Sign in
foss-fpga-tools
/
third_party
/
yosys
/
a834cfa50ac9a22621691c9e3c6304e5faabef98
/
.
/
manual
/
PRESENTATION_Prog
/
absval_ref.v
blob: ca0a115a0a7a8117903c2034c6c4a2ba8e879691 [
file
]
module
absval_ref
(
input
signed
[
3
:
0
]
a
,
output
[
3
:
0
]
y
);
assign y
=
a
[
3
]
?
-
a
:
a
;
endmodule