rust-embedded / riscv

Low level access to RISC-V processors
818 stars 160 forks source link

`riscv-rt`: move all the assembly code to `asm.rs` #186

Closed romancardenas closed 6 months ago

romancardenas commented 6 months ago

I sorted all the code to isolate assembly code in asm.rs. As a result, now _start_rust is no longer needed. This matches the current version of cortex-m-rt.

Hopefully, having all the run-time code in a single asm.rs file will help us adding new functionalities for future versions