Will my interrupts still work?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
User avatar
PavelChekov
Member
Member
Posts: 113
Joined: Mon Sep 21, 2020 9:51 am
Location: Aboard the Enterprise

Re: Will my interrupts still work?

Post by PavelChekov »

As I said above, I am very new to this and can't find any documentation on how to do something like that. :mrgreen:
USS Enterprise NCC-1701,
The Final Frontier,
Space,
The Universe

Live Long And Prosper

Slava Ukraini!
Слава Україні!
kzinti
Member
Member
Posts: 898
Joined: Mon Feb 02, 2015 7:11 pm

Re: Will my interrupts still work?

Post by kzinti »

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. :mrgreen:
That's correct. You won't find information on doing something like that. You need to figure out the steps yourself.

Take one thing at a time, learn it, understand it, then go to the next thing and repeat.
PeterX
Member
Member
Posts: 590
Joined: Fri Nov 22, 2019 5:46 am

Re: Will my interrupts still work?

Post by PeterX »

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. :mrgreen:
Well, it goes something like this (pseudo code):

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.
As I said, this is no real code, just to show you how it has to be done. I think Nexos gave you already some info sources.

What kzinti said is correct. You must be willing to learn a lot, then it is possible and fun.

Greetings
Peter
User avatar
PavelChekov
Member
Member
Posts: 113
Joined: Mon Sep 21, 2020 9:51 am
Location: Aboard the Enterprise

Re: Will my interrupts still work?

Post by PavelChekov »

Thanks.
USS Enterprise NCC-1701,
The Final Frontier,
Space,
The Universe

Live Long And Prosper

Slava Ukraini!
Слава Україні!
Post Reply