mirror of https://github.com/zachjs/sv2v.git
9 lines
192 B
Systemverilog
9 lines
192 B
Systemverilog
|
|
module top;
|
||
|
|
initial begin
|
||
|
|
$display(signed'(4294967295));
|
||
|
|
$display(unsigned'(4294967295));
|
||
|
|
$display(signed'(-1));
|
||
|
|
$display(unsigned'(-1));
|
||
|
|
end
|
||
|
|
endmodule
|