8 lines
135 B
Coq
8 lines
135 B
Coq
|
|
module top;
|
||
|
|
reg [7:0] result;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
result = {{0{1'b1}}}; // This fails concatination has zero width.
|
||
|
|
end
|
||
|
|
endmodule
|