1
0
Fork 0

Compare commits

..

23 Commits

Author SHA1 Message Date
Simon Renblad 7a8df6e34f add xbuild target features 2024-10-15 14:59:55 +08:00
Simon Renblad f975183df5 fixup 2024-10-15 14:59:55 +08:00
Simon Renblad e05208ce70 cargo: change resolver 2024-10-15 14:59:55 +08:00
Simon Renblad a0d807b55c fixed warnings 2024-10-15 14:59:55 +08:00
Simon Renblad 09b1288872 unused libs, fixup 2024-10-15 14:59:55 +08:00
Simon Renblad 916c72237b fixed bugs + missing methods 2024-10-15 14:59:55 +08:00
Simon Renblad 9a413c5a96 remove unnecessary feature attributes 2024-10-15 14:59:55 +08:00
Simon Renblad b390222508 fix panic message 2024-10-15 14:59:55 +08:00
Simon Renblad 61f6355a73 flake hashes 2024-10-15 14:59:55 +08:00
Simon Renblad 0c5b0476ab fix compiler builtins version 2024-10-15 14:59:55 +08:00
Simon Renblad 0d2bbed9a0 add fatfs 0.4 dep 2024-10-15 14:59:55 +08:00
Simon Renblad 00e625c802 lockfile 2024-10-15 14:59:55 +08:00
Simon Renblad 42005a614e lockfile update 2024-10-15 14:59:55 +08:00
Simon Renblad c7a3197977 lockfile update 2024-10-15 14:59:55 +08:00
Simon Renblad ffb24e133b commit lockfile 2024-10-15 14:59:55 +08:00
Simon Renblad f01a69df18 szl switch to fatfs r/w traits 2024-10-15 14:59:55 +08:00
Simon Renblad fbf9dff15c remove core_io dependency from libconfig 2024-10-15 14:59:55 +08:00
Simon Renblad fd46cb9c8b remove usage of BufReader 2024-10-15 14:59:55 +08:00
Simon Renblad 259c0fe842 change fatfs to master 2024-10-15 14:59:55 +08:00
Simon Renblad e85263eff7 remove core_io from Cargo.toml 2024-10-15 14:59:55 +08:00
Simon Renblad 4736f7592b up flake to 2024 sep nightly 2024-10-15 14:59:55 +08:00
Simon Renblad e51af90ba4 update version 2024-10-15 14:59:55 +08:00
Simon Renblad 2c70fdbeab llvm_asm -> asm 2024-10-15 14:59:55 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -79,5 +79,5 @@ pub unsafe fn exit_irq() {
asm!("
mrs r0, SPSR
msr CPSR, r0
");
", out("r0") _);
}

View File

@ -10,6 +10,6 @@ pub fn enable_fpu() {
vmrs r1, fpexc
orr r1, r1, (1<<30)
vmsr fpexc, r1
");
", out("r1") _);
}
}