We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The compilation and simulation of the Test_PLIC.bsv fails
To reproduce issue: run the makefile in src_Core/PLIC
Compilation Fix: Axi4_Wr_Data in this line should not have wid field
Simulation Fix (after the above fix): the following line
vrg_irqs [5] <= True;
should be:
vrg_irqs [4] <= True;
Explanation: vrg_irq[i] is connected to source_ip[i+1].
vrg_irq[i]
source_ip[i+1]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The compilation and simulation of the Test_PLIC.bsv fails
To reproduce issue: run the makefile in src_Core/PLIC
Compilation Fix:
Axi4_Wr_Data in this line should not have wid field
Simulation Fix (after the above fix): the following line
should be:
Explanation:
vrg_irq[i]
is connected tosource_ip[i+1]
.The text was updated successfully, but these errors were encountered: