Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.7--signed_func.sv
blob: 576266a95abbe46659331876fbcc0ca84689e24c [
file
] [
log
] [
blame
]
/*
:name: signed_func
:description: $signed() test
:should_fail: 0
:tags: 11.7
*/
module
top
();
logic
signed
[
7
:
0
]
a
;
initial
begin
a
=
$signed
(
4
'b1000);
end
endmodule