add a ps2 driver

This commit is contained in:
Able 2022-12-05 07:46:29 -06:00
parent 693d861a4e
commit be110ed6cc
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() {}