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
40: Fix context_switch spin jump r=phil-opp a=phil-opp
Fixes a small problem of rust-osdev#39: The problem is that inline Assembly has no special support for `.` labels, so `.spin` is just a global label with the name ".spin". But `jmp spin` jumps to the completely different "spin" label, which is defined somewhere in the assembly code. This PR fixes that problem by reintroducing the `context_switch_spin` label that was used in the assembly code before.
Co-authored-by: Philipp Oppermann <[email protected]>
0 commit comments