IDT Calling C Code...
Re:IDT Calling C Code...
when I put in a " [section .data] " above my IDT macros the computer reboots :'( why?
Re:IDT Calling C Code...
I cannot see any problem yet I will keep looking, however IRQ8-15 need to do this
mov al, 0x20
out 0x20, al
out 0xa0, al
you only have
mov al, 0x20
out 0x20, al
if any of these get called the PIC will stop responding.
mov al, 0x20
out 0x20, al
out 0xa0, al
you only have
mov al, 0x20
out 0x20, al
if any of these get called the PIC will stop responding.
Re:IDT Calling C Code...
I wanna ask if i got this right:
And IDT gives the ability to use interrupts, right? But now, are they your own, or BIOS ?
And IDT gives the ability to use interrupts, right? But now, are they your own, or BIOS ?
Re:IDT Calling C Code...
only my own ints I make in my IDT and hardware ints.
Back to topic....
Back to topic....
Re:IDT Calling C Code...
Here is more info....
notworking.asm is linked in a elf format with my C kernel....
notworking is loaded first.....then the C kernel...
would the linker cause probs?
notworking.asm is linked in a elf format with my C kernel....
notworking is loaded first.....then the C kernel...
would the linker cause probs?
Re:IDT Calling C Code...
TY, nu[some numbers that I forgot]!
Your IDT code worked!
I will be releasing code soon...unless I want to have fun making some more stuff....
Your IDT code worked!
I will be releasing code soon...unless I want to have fun making some more stuff....