11 lines
147 B
Coq
11 lines
147 B
Coq
|
|
module top;
|
||
|
|
reg [79:0] str;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$readmempath(str);
|
||
|
|
str = "test";
|
||
|
|
str[7:0] = 'd2;
|
||
|
|
$readmempath(str);
|
||
|
|
end
|
||
|
|
endmodule
|