Start PS/2 driver

This commit is contained in:
pjht 2024-09-09 16:14:02 -05:00
parent a3000daf95
commit 3b8eccacf0
Signed by: pjht
GPG Key ID: CA239FC6934E6F3A

View File

@ -1,3 +1,6 @@
use std::process::Command;
fn main() {
println!("Hello from phase 2 init");
Command::new("/bin/ps2").spawn().unwrap();
}