Строки
"string"
string <var_name> = "string";module string_tb;
string str0; reg [16*8-1:0] str1, str2;
initial begin
str0 = "Hello!"; $display("str0 = |%s|", str0);
str1 = "How are you"; $display("str1 = |%s|", str1);
str2 = "How are you doing?"; $display("str2 = |%s|", str2);
end
endmodulestr0 = |Hello!|
str1 = | How are you|
str2 = |w are you doing?|Last updated