You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the current panic handler simply is loop { }. In release builds, this will likely optimize out and it also has problems because interrupts will still execute.
We should probably do something like this
asm!("cli");// disable interruptsloop{asm!("":::::"volatile");// wrong syntax, I'm going from memory}