Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
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