diff options
| author | Dario Bartussek <[email protected]> | 2021-03-27 14:26:43 +0100 |
|---|---|---|
| committer | Dario Bartussek <[email protected]> | 2021-03-27 14:26:43 +0100 |
| commit | 50c52b5f220575f0c5127be623dd53a8c381f7fa (patch) | |
| tree | 2e888ad5b5a3fcb39119f7bd303c51b759649d43 /src | |
| parent | Basic example for compiling Rust for the 3DS as elf (diff) | |
| download | rust_3ds-50c52b5f220575f0c5127be623dd53a8c381f7fa.tar.xz rust_3ds-50c52b5f220575f0c5127be623dd53a8c381f7fa.zip | |
Updated main to actually produce a start function
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 029937f..716751a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ use core::panic::PanicInfo; #[no_mangle] -pub extern "C" fn pre_main() -> ! { +pub extern "C" fn _start() -> ! { loop {} } |