12 lines
111 B
Coq
12 lines
111 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
string str;
|
||
|
|
reg [127:0] bitstr;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
str = "hello";
|
||
|
|
bitstr = str;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|