aboutsummaryrefslogtreecommitdiff
path: root/src/machine/mod.rs
diff options
context:
space:
mode:
authorTianhao Wang <wth@riseup.net>2024-02-01 17:04:23 +0100
committerTianhao Wang <shrik3@mailbox.org>2024-06-11 15:13:37 +0200
commit16ff930f94a1c5cfa4a98a42a96c9b230024286b (patch)
tree3bff5b41d787cef7c01f502871a358849d209ebd /src/machine/mod.rs
parent5c820128d39a2e8e37baa03f57a216aa7300232d (diff)
make device_io a arch independent interface.
In arm we will be using MMIO instead of the IO instructions. However the peripherals should use the same interface for IOs.
Diffstat (limited to 'src/machine/mod.rs')
-rw-r--r--src/machine/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/machine/mod.rs b/src/machine/mod.rs
index c6f6fec..a9cf4cb 100644
--- a/src/machine/mod.rs
+++ b/src/machine/mod.rs
@@ -5,5 +5,6 @@ pub mod key;
pub mod keyctrl;
pub mod mem;
pub mod plugbox;
+pub mod device_io;
// TODO: this module *should* be arch independent.