So I'm learning how to make an OS. The problem is that every website says to scan the keyboard to obtain the scancodes in order to detect input. How do I 'scan' the keyboard? I know this question seems very ridiculous, but I really don't know how to do that, and I need help. I also have to mention that I googled it a lot.
相关问题
- Why should we check WIFEXITED after wait in order
- Null-terminated string, opening file for reading
- How to implement only emoji keyboard for Entry?
- Is there a way to show a number pad (preferably wi
- What's the difference between 0 and dword 0?
相关文章
- How do you detect key up / key down events from a
- What happens to dynamic allocated memory when call
- Is it possible to run 16 bit code in an operating
- How to generate assembly code with gcc that can be
- Select unique/deduplication in SSE/AVX
- Optimising this C (AVR) code
- Why does the latency of the sqrtsd instruction cha
- Difference in ABI between x86_64 Linux functions a
Example for polling the keyboard port without using an ISR (x86-CPU):
Within an ISR simple use "in al, 60h" for to get the scancode.