cheetosysst / os

Learning how to write a operating system kernel.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interrupt issue

cheetosysst opened this issue · comments

I wrote some interrupt related code, but none of them are working. I verified that the idt table contents are correct, but when I pressed the keyboard, it didn't trigger the interrupt. There are two possibilities I can think of.

  1. The interrupt setup is actually correct, but there are some keyboard setup I missed.
  2. The current idt setup is not correct.

If 2. turns out to be the issue, I might have to complete rewrite the interrupt setup process.