11 lines
150 B
Coq
11 lines
150 B
Coq
|
|
module top;
|
||
|
|
reg [2:-1] vec;
|
||
|
|
integer idx;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
idx = 'bx;
|
||
|
|
assign vec[idx+:1] = 1'b1;
|
||
|
|
deassign vec[idx+:1];
|
||
|
|
end
|
||
|
|
endmodule
|