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
Hi there!
I think I found a bug not described in the issues and PRs in this repo. minstret seems to overcount.
minstret
The stored value of t0 should be 0, however with Kronos it is 1.
t0
0
1
.section ".text.init","ax",@progbits .globl _start .align 2 _start: li a0, 0x10 csrrw zero, minstret, zero csrrw t0, minstret, zero sw t0, (a0) sw zero, (zero) infinite_loop0: j infinite_loop0
The same bug is found in BOOM and Vexriscv.
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there!
Bug description
I think I found a bug not described in the issues and PRs in this repo.
minstret
seems to overcount.Example snippet
The stored value of
t0
should be0
, however with Kronos it is1
.Notes
The same bug is found in BOOM and Vexriscv.
Thanks!
The text was updated successfully, but these errors were encountered: