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

11 lines
142 B
Rust
Raw Normal View History

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