diff options
| author | Dario Bartussek <[email protected]> | 2021-04-19 13:50:42 +0200 |
|---|---|---|
| committer | Dario Bartussek <[email protected]> | 2021-04-19 13:50:42 +0200 |
| commit | 1f8f4e05410df148b7f3c3fd35f85c9b37d0401f (patch) | |
| tree | 02f04335c9c2a9497b9c4a7113e0d1338194d674 /src/main.rs | |
| parent | Merge branch '2_3ds_exe' of https://github.com/dbartussek/rust_3ds into 2_3ds... (diff) | |
| download | rust_3ds-2.5_libctru.tar.xz rust_3ds-2.5_libctru.zip | |
Simple hello world program using libctru2.5_libctru
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 6133bfd..0000000 --- a/src/main.rs +++ /dev/null @@ -1,18 +0,0 @@ -#![feature(asm)] -#![no_std] -#![no_main] - -use core::panic::PanicInfo; - -#[no_mangle] -pub extern "C" fn pre_main() -> ! { - unsafe { - core::ptr::null::<usize>().read_volatile(); - } - loop {} -} - -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop {} -} |