From my makefile:
Code: Select all
run: kernel.bin
qemu-system-i386 -kernel kernel.bin -vnc localhost:5500,reverse
When using VNC to view a QEMU VM, is the keyboard input forwarded to the virtual PS/2 port?
If so, I should be able to test interrupt handling on IRQ1. If not, I have two problems:
1. How do I get keyboard input to my kernel?
2. Is there a convenient way to test interrupt handling without first diddling with the keyboard?
If you're interested, my code is at https://github.com/jackmanlabs/barebones. Thanks.