ableos_userland/drivers/audio/pc_beeper_driver/src/main.rs

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];
}