add a ps2 driver

pull/1/head
Able 2022-12-05 07:46:29 -06:00
parent ffd618cede
commit 168234e928
Signed by: able
GPG Key ID: 0BD8B45C30DCA887
4 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,2 @@
[build]
target = "wasm32-unknown-unknown"

View File

@ -0,0 +1,8 @@
[package]
name = "ps2_keyboard"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,2 @@
This driver will take in keyboard scancodes and pass them to a server program that handles translation

View File

@ -0,0 +1,5 @@
#![no_std]
#![no_main]
#[no_mangle]
fn start() {}