venus
venus copied to clipboard
[Request] Conditional Break Points
Make it so you can set a conditional breakpoint. Perhaps also make it so you could do this with ecall as well.
Current workaround:
beq a0 x0 nobreak
ebreak
nobreak:
nop # This is is the next line of your code which should be executed if the break is or is not taken.