From 3b8eccacf02b442a39135a855dc7490bb1334484 Mon Sep 17 00:00:00 2001 From: pjht Date: Mon, 9 Sep 2024 16:14:02 -0500 Subject: [PATCH] Start PS/2 driver --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 3faf636..67a2c08 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,6 @@ +use std::process::Command; + fn main() { println!("Hello from phase 2 init"); + Command::new("/bin/ps2").spawn().unwrap(); }