diff options
| author | Tianhao Wang <wth@riseup.net> | 2024-02-01 15:10:11 +0100 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:13:37 +0200 |
| commit | c01e440d014253fd4cae9f642c949720a54baf4b (patch) | |
| tree | 68d9fc26ccf2f124702b2c2a000892c344f203fe /src/machine/mod.rs | |
| parent | 753955dbb4e6c77b9c56c659fe766a867c575023 (diff) | |
basic interrupt/PIC support
Diffstat (limited to 'src/machine/mod.rs')
| -rw-r--r-- | src/machine/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/machine/mod.rs b/src/machine/mod.rs index 70660ce..c6f6fec 100644 --- a/src/machine/mod.rs +++ b/src/machine/mod.rs @@ -1,5 +1,9 @@ pub mod cgascr; +pub mod interrupt; mod kbd_defs; pub mod key; pub mod keyctrl; pub mod mem; +pub mod plugbox; + +// TODO: this module *should* be arch independent. |
