diff options
| author | Tianhao Wang <shrik3@mailbox.org> | 2024-06-06 00:02:53 +0200 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:17:14 +0200 |
| commit | a86f59b32eb86a1ccb94bf1e627c1115c3b6b217 (patch) | |
| tree | a3b1c10ad4fa76be79aed1f7e8eebbd2cfa146aa /src/machine/mod.rs | |
| parent | ca8bc76fd5319842954508484542f4beb6b591d0 (diff) | |
io: add serial output through port 0x3f8 (qemu)
not yet wrapped with fmt macros because I want some thing stateless.
(i.e. I don't want to pass `&mut self` to write_str...).
Diffstat (limited to 'src/machine/mod.rs')
| -rw-r--r-- | src/machine/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/machine/mod.rs b/src/machine/mod.rs index a2cf730..b2b026f 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 multiboot; +pub mod serial; // TODO: this module *should* be arch independent. |
