Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rebase removed asm import, so qualify path to asm! macro.
  • Loading branch information
jonathanpallant committed Aug 27, 2025
commit c4b0b366a2bf87450f7b924f136c1537dcb0141a
2 changes: 1 addition & 1 deletion cortex-m/src/asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ pub unsafe fn semihosting_syscall(nr: u32, arg: u32) -> u32 {
#[cfg(cortex_m)]
#[inline(always)]
pub unsafe fn enter_unprivileged(psp: *const u32, entry: fn() -> !) -> ! {
asm!(
core::arch::asm!(
"mrs {tmp}, CONTROL",
"orr {tmp}, #3",
"msr PSP, {psp}",
Expand Down
Loading