aboutsummaryrefslogtreecommitdiff
path: root/tests/riscv32/src/bin/empty.rs
blob: 55a1030677cf2ea15bc09cd19ffe1c6f7d6b806b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![no_main]

use embassy_executor::Spawner;

#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
    loop {}
}

#[embassy_executor::main]
async fn main(_spawner: Spawner) {
    // Don't do anything, just make sure it compiles.
    loop {}
}