Hi,
Are you talking about my bootloader?
Yes. If i use it on my p-100 works perfectly. On my p4 not works
When I load my kernel with your bootloader all works ok. But when using grub not works.
In file atached are my ISrs
--------------------------------------------
Here you have the C ruote all ISRs calls. ( not the IRQs)
void exc0(dword excepcion)
{
asm("cli");
switch (excepcion)
{
case 0: panic("Error de division",3);
break;
case 1: panic("Error de depuracion",3);
break;
case 2: panic("Error: Interrupcion no enmascarable",3);
break;
case 3: panic("Error de Breakpoint",3);
break;
case 4: panic("Error de Overflow",3);
break;
case 5: panic("Bound Exception",3);
break;
case 6: panic("Invalid Opcode",3);
break;
case 7: panic("FPU not available",3);
break;
case 8: panic("Doble Fault",3);
break;
case 9: panic("Coprocessor Segment Overrun",3);
break;
case 10: panic("Invalid TSS",3);
break;
case 11: panic("Segment not present",3);
break;
case 12: panic("Stack exception",3);
break;
case 13: panic("General Protection",3);
break;
case 14: panic("Page fault",3);
break;
case 15: panic("Floating-point error",3);
break;
}
asm("HLT");
}