diff --git a/src/interrupts.rs b/src/interrupts.rs index a4fbc0a2..e2c5cafd 100644 --- a/src/interrupts.rs +++ b/src/interrupts.rs @@ -1,9 +1,3 @@ -// The x86-interrupt calling convention leads to the following LLVM error -// when compiled for a Windows target: "offset is not a multiple of 16". This -// happens for example when running `cargo test` on Windows. To avoid this -// problem we skip compilation of this module on Windows. -#![cfg(not(windows))] - use crate::{gdt, print, println}; use lazy_static::lazy_static; use pic8259_simple::ChainedPics;