Merge branch 'main' of gitlab.ibr.cs.tu-bs.de:vss/teaching/ss25/v_bsb1/Gruppe_018

This commit is contained in:
Eggert Jung
2025-07-08 01:14:30 +02:00
5 changed files with 225 additions and 8 deletions

View File

@@ -124,7 +124,8 @@ void initInterruptHandlers() {
// TODO: Add more handlers here
IDT::set(Core::Interrupt::Vector::KEYBOARD,
IDT::InterruptDescriptor::Returning(handle_keyboard_asm));
IDT::set(Core::Interrupt::Vector::TIMER,
IDT::InterruptDescriptor::Returning(handle_timer));
// Load the idt pointer
IDT::load();
}