1
0
Fork 0

Compare commits

..

23 Commits

Author SHA1 Message Date
Simon Renblad e1b3312b8b add xbuild target features 2024-10-15 13:48:41 +08:00
Simon Renblad de496ef5bb fixup 2024-10-15 13:48:41 +08:00
Simon Renblad 4cb0854501 cargo: change resolver 2024-10-15 13:48:41 +08:00
Simon Renblad 411ada4d4e fixed warnings 2024-10-15 13:48:41 +08:00
Simon Renblad 2c0b54280c unused libs, fixup 2024-10-15 13:48:41 +08:00
Simon Renblad 18e9002d5a fixed bugs + missing methods 2024-10-15 13:48:41 +08:00
Simon Renblad 58766303af remove unnecessary feature attributes 2024-10-15 13:48:41 +08:00
Simon Renblad cdbc11b975 fix panic message 2024-10-15 13:48:41 +08:00
Simon Renblad 6da049356e flake hashes 2024-10-15 13:48:41 +08:00
Simon Renblad 247b7bc948 fix compiler builtins version 2024-10-15 13:48:41 +08:00
Simon Renblad d6acc32660 add fatfs 0.4 dep 2024-10-15 13:48:41 +08:00
Simon Renblad d8db7d82f1 lockfile 2024-10-15 13:48:41 +08:00
Simon Renblad 47e2dd125d lockfile update 2024-10-15 13:48:41 +08:00
Simon Renblad 0824506d3c lockfile update 2024-10-15 13:48:41 +08:00
Simon Renblad adc58d42bf commit lockfile 2024-10-15 13:48:41 +08:00
Simon Renblad ac4e360972 szl switch to fatfs r/w traits 2024-10-15 13:48:41 +08:00
Simon Renblad fea3b03a93 remove core_io dependency from libconfig 2024-10-15 13:48:41 +08:00
Simon Renblad db80ec798b remove usage of BufReader 2024-10-15 13:48:41 +08:00
Simon Renblad cbf2efb1cb change fatfs to master 2024-10-15 13:48:41 +08:00
Simon Renblad 486873db68 remove core_io from Cargo.toml 2024-10-15 13:48:41 +08:00
Simon Renblad 5027ca79a2 up flake to 2024 sep nightly 2024-10-15 13:48:41 +08:00
Simon Renblad 591b88a4ce update version 2024-10-15 13:48:41 +08:00
Simon Renblad d67ba850d4 llvm_asm -> asm 2024-10-15 13:48:34 +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") _);
");
}
}