SystemVerilog 中的非法 wreal 端口连接 [已关闭]

Illegal wreal port connection in SystemVerilog [closed]

提问人:AYAN BISWAS 提问时间:11/17/2023 最后编辑:toolicAYAN BISWAS 更新时间:11/17/2023 访问量:30

问:


编辑问题以包括所需的行为、特定问题或错误以及重现问题所需的最短代码。这将有助于其他人回答这个问题。

7天前关闭。

Error-[MSV-IWRLC2] Illegal wreal port connection
finesim.spi, 572
adc_top_config, "adc_w_inl_dnl_wdependency xi0(clk_adc, en_adc, eoc, adc_out[9:0], vinp_ext, vinm_ext, vinp_int, vinm_int, rssip1, rssim1, rssip2, rssim2, adc_signal_sel[1:0], vdd_ana, vss, en_adc);"
  Non real/wreal expression 'CFG_SELSIG' is connected to 'adc_signal_sel[1:0]'
  of type wreal. Only scalar wreal nets or single wreal array elements are 
  allowed to be connected to a non real/wreal type.

如何解决这个问题?

系统-Verilog

评论

0赞 Mikef 11/17/2023
端口连接的类型错误。您将需要发布更多上下文以获取更多详细信息。
0赞 Serge 11/17/2023
该消息告诉“CFG_SELSIG”,无论它是什么,都不是 wreal 类型,但它仍然连接到实例 xi0 中adc_w_inl_dnl_wdependency模块的 wreal 端口。要解决此问题,请正确连接它。

答: 暂无答案