ableos_userland/drivers/basic_driver/src/main.rs
2022-12-03 12:15:03 -06:00

9 lines
86 B
Rust

#![no_std]
#![no_main]
#[no_mangle]
fn start() -> i32 {
// Simple driver
1
}