We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5506da6 commit 96e2174Copy full SHA for 96e2174
2 files changed
src/interrupts.rs
@@ -83,12 +83,6 @@ extern "x86-interrupt" fn keyboard_interrupt_handler(_stack_frame: InterruptStac
83
}
84
85
86
-extern "x86-interrupt" fn syscall_handler(_stack_frame: InterruptStackFrame) {
87
- // Read rax (syscall number) and rdi (arg0) from stack frame
88
- // For now log and return
89
- crate::println!("[syscall] interrupt 0x80 triggered");
90
-}
91
-
92
extern "x86-interrupt" fn syscall_handler_real(_stack_frame: InterruptStackFrame) {
93
let number: u64;
94
let arg0: u64;
src/main.rs
@@ -1,6 +1,5 @@
1
#![no_std]
2
#![no_main]
3
-#![feature(abi_x86_interrupt)]
4
extern crate alloc;
5
use axiom_os::{
6
println,
0 commit comments