gpt4 book ai didi

verilog - 将字符串变量传递给 plusargs

转载 作者:行者123 更新时间:2023-12-04 00:43:20 25 4
gpt4 key购买 nike

我需要获取命令行选项来为 SystemVerilog 中的约束添加条件。

我正在从函数调用中调用 $value$pluargs("string=%d",val),我需要使用传递给函数的参数作为“字符串”名称.

function(string name);
$value$plusargs("<name>=%d", val)
endfunction

我不知道该怎么做。说 $value$plusargs("%s=%d",name,val) 会导致“太多参数”错误。

最佳答案

您可以使用字符串连接:

module tb;
int val = 5;

initial begin
$monitor("val=", val);
foo("bar");
end

function void foo (string name);
$value$plusargs({name, "=%d"}, val);
endfunction
endmodule

关于verilog - 将字符串变量传递给 plusargs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16361272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com