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

11 lines
142 B
Rust
Raw Normal View History

2023-03-30 06:31:55 +00:00
#![no_std]
#![no_main]
2023-03-31 03:19:57 +00:00
extern crate alloc;
2023-03-30 06:31:55 +00:00
#[no_mangle]
fn start() {
// Simple driver
2023-03-31 03:19:57 +00:00
let mut audio_ring: [u8; 2048] = [0; 2048];
2023-03-30 06:31:55 +00:00
}