-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
询问有关rule和descending_urgency的问题 #7
Comments
你好,这个问题问得非常好。 rule 被展开后的名称可以在 Warning 信息里看到。比如:
那么这两个 rule 的名称就是 m_rl_swap_i_1 和 m_rl_swap_i_2 。你只要写:
应该就能消除 Warning 了。 |
这样子做好像会导致编译失败,我在rule前面加上
|
在attribute里面的rule的名称和Warning里面展示的名称不尽相同。比如实例化的子模块的端口名为 我在使用mkConnection时也遇到了类似的问题,即mkConnection的规则与其他规则冲突,想要在attribute里手动添加对应规则的约束。Warning里显示的规则名为 此Issue中for循环中的rule命名,经过测试,命名规则为,循环第0个规则,保持原名,第1个规则,原名后加 另外,大佬能不能弄个交流群之类的,感觉现在用BSV的人太少了,身边找不到可以交流的人:) |
在for循环中展开的rule要如何指定descending_urgency。比如说下面的一个程序,这个程序是将输入的数从小到大排好了序再输出,但是在编译的时候发现for循环里面写的rule发生冲突,虽然说编译器会自动帮我们指定descending_urgency,但是想问一下有没有比较方便的在for循环里面手动指定descending_urgency的方法。
报warning如下:
Bubblesort.bsv
Testbench.bsv
Utils.bsv
三个文件放在同一目录下可以运行
The text was updated successfully, but these errors were encountered: