Re: Will my interrupts still work?
Posted: Tue Sep 22, 2020 12:17 pm
As I said above, I am very new to this and can't find any documentation on how to do something like that. 

The Place to Start for Operating System Developers
http://f.osdev.org/
That's correct. You won't find information on doing something like that. You need to figure out the steps yourself.PavelCheckov wrote:As I said above, I am very new to this and can't find any documentation on how to do something like that.
Well, it goes something like this (pseudo code):PavelCheckov wrote:As I said above, I am very new to this and can't find any documentation on how to do something like that.
Code: Select all
label 1:
read from I/O port A
compare if it is = B
if so goto 1
label 2:
read from I/O port C
compare if it is = D
if not goto 2
Now you have a character from keyboard.