18 lines
138 B
Coq
18 lines
138 B
Coq
|
|
module bug();
|
||
|
|
|
||
|
|
function [7:0] dup;
|
||
|
|
|
||
|
|
input [7:0] i;
|
||
|
|
|
||
|
|
begin
|
||
|
|
dup = i;
|
||
|
|
end
|
||
|
|
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
wire [7:0] a;
|
||
|
|
|
||
|
|
assign a = dup(missing);
|
||
|
|
|
||
|
|
endmodule
|