forked from AbleOS/ableos_userland
11 lines
142 B
Rust
11 lines
142 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
extern crate alloc;
|
|
|
|
#[no_mangle]
|
|
fn start() {
|
|
// Simple driver
|
|
let mut audio_ring: [u8; 2048] = [0; 2048];
|
|
}
|