mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
13 lines
238 B
Verilog
13 lines
238 B
Verilog
module top;
|
|
reg signed x;
|
|
initial x = 1;
|
|
parameter ONE = 1;
|
|
initial begin : blk
|
|
reg signed [4:0] y;
|
|
y = x;
|
|
$display("%b", y);
|
|
$display("%b", y);
|
|
$display("%b", y);
|
|
end
|
|
endmodule
|