1) you can use INT nn assembly opcode to force an interrupt call. If your handler replied, then it's more likely that your IDT is fine.
2) you can test exceptions with code like "mov eax,0 ; idiv eax,eax,eax", "mov ax,0 ; mov gs,ax ; mov ax,[gs:ax]" ...
3) you can STI so that you'll start receiving harware IRQs (IRQ0 for timer for instance, which will be raised every 18.2th of second if you didn't reprogram the PIT)
And for the cin,
[IRQ1Handler] --scancode--> [ASCIIDecoder] --ascii char-->[inputbuffer]
Then, notify the thread owning the inputbuffer it has received some datas (this can just be stdin_hasdata++ if you're not multithreading yet ...)
And the user program will do
Code: Select all
volatile extern int stdin_hasdata;
getc {
while (!stdin_hasdata);
stdin_hasdata--;
return stdin_buffer[stdin_readnext++];
}