mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-07 03:24:31 +02:00
By adding ivtest to the iverilog source tree, it is easier to keep the regression test synchronized with the source that is being tested. This should be especially helpful for PRs that add a new feature, and have a matching ivtest PR with the regression test for that feature.
11 lines
207 B
Verilog
11 lines
207 B
Verilog
module top;
|
|
// Does this have to be signed?
|
|
wire signed [7:0] out;
|
|
|
|
// Either of these will not expand correctly.
|
|
// assign out = 'sh1f;
|
|
assign out = 5'sh1f;
|
|
|
|
initial #1 $displayb(out);
|
|
endmodule
|