美文网首页
从命令行获取参数

从命令行获取参数

作者: Poisson_Lee | 来源:发表于2019-12-27 10:22 被阅读0次

绿皮书 P303, P304

$test$plusargs()

$value$plusargs()


`define GET_ARG_INT(para, init_val) \
begin \
    uvm_cmdline_processor cmdline_proc = uvm_cmdline_processor::get_inst() \
string ``para``_string = ""; \
int rc = cmdline_proc.get_arg_value("``para``=", ``para``_string); \
para = init_val; \
if(``para``_string != "") begin \

end \

end \
get.jpg

相关文章

网友评论

      本文标题:从命令行获取参数

      本文链接:https://www.haomeiwen.com/subject/xkdlpftx.html