SV 报错Error-[SE] Syntax error Following verilog source has syntax error : ["continue" inside a concurrent process] "../tests/lpddr_tests/lpddr_crm_test.sv", 74: token is ';' continue;
时间: 2024-02-14 10:30:35 浏览: 383
lidar_undistortion_2d-syntaxerror: invalid syntax
这个错误提示是因为在一个并发进程中使用了 "continue" 关键字,而 "continue" 关键字只能在循环语句中使用。根据错误提示,问题出现在 "../tests/lpddr_tests/lpddr_crm_test.sv" 文件的第 74 行,具体是在一个分号后面使用了 "continue" 关键字。要解决这个问题,你需要检查该行代码并确保 "continue" 关键字只在循环语句中使用。
阅读全文