astryon/core/src/arch/interrupts.zig
Gabriel 13ec4bee87 Ready. Set. Go!
Microkernel development in Zig, should be fun! =]
2025-02-13 22:39:48 +01:00

10 lines
239 B
Zig

const std = @import("std");
const target = @import("builtin").target;
pub const arch = switch (target.cpu.arch) {
.x86_64 => @import("x86_64/interrupts.zig"),
else => {
@compileError("unsupported architecture");
},
};