aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86_64/mod.rs
diff options
context:
space:
mode:
authorTianhao Wang <shrik3@mailbox.org>2024-06-05 07:56:16 +0200
committerTianhao Wang <shrik3@mailbox.org>2024-06-11 15:17:13 +0200
commitd6815a5903716c058c4f8bee89bfa745ee752c9d (patch)
tree1f3027cf3b98571b7a5fe24b80cf0382209bc69a /src/arch/x86_64/mod.rs
parente35e9f4c88be4ca7bf08970109c1ff8d90018b02 (diff)
proc: interrupt: define context and trap frame
Signed-off-by: Tianhao Wang <shrik3@mailbox.org>
Diffstat (limited to 'src/arch/x86_64/mod.rs')
-rw-r--r--src/arch/x86_64/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86_64/mod.rs b/src/arch/x86_64/mod.rs
index 888cafd..ee51338 100644
--- a/src/arch/x86_64/mod.rs
+++ b/src/arch/x86_64/mod.rs
@@ -1,4 +1,4 @@
-pub mod context;
+pub mod arch_regs;
pub mod interrupt;
pub mod io_port;
pub mod mem;