Skip to content

Commit 96e2174

Browse files
committed
fix: removed unused funcns, that were failing ci checks
1 parent 5506da6 commit 96e2174

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

src/interrupts.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,6 @@ extern "x86-interrupt" fn keyboard_interrupt_handler(_stack_frame: InterruptStac
8383
}
8484
}
8585

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-
9286
extern "x86-interrupt" fn syscall_handler_real(_stack_frame: InterruptStackFrame) {
9387
let number: u64;
9488
let arg0: u64;

src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![no_std]
22
#![no_main]
3-
#![feature(abi_x86_interrupt)]
43
extern crate alloc;
54
use axiom_os::{
65
println,

0 commit comments

Comments
 (0)