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