0
我正在使用N450開發板,事實證明它已經有IDT(也許是由BIOS !!構建的)。 當我使用INT $ 0x55(使用ItnCall)調用ISR時,代碼跳轉到另一個隨機地址而不是跳到ISR_0x55 !!!爲什麼?使用IDT(INTERRUPT DESCRIPTOR TABLE)程序集AT&T intel 32位
這是我的代碼:
C代碼
fill_interrupt(ISR_0x55,
(unsigned int) isr0x55, //
0x10, // Segment Selector
0x8E); // P=1, DPL=0, D=1
static void fill_interrupt(unsigned char num, unsigned int base, unsigned short sel, unsigned char flags)
{
unsigned short *Interrupt_Address;
/*address = idt_ptr.base + num * 8 byte*/
Interrupt_Address = (unsigned short *)(idt_ptr.base + num*8);
*(Interrupt_Address) = base&0xFFFF;
*(Interrupt_Address+1) = sel;
*(Interrupt_Address+2) = (flags<<8)&0xFF00;
*(Interrupt_Address+3) = (base>>16)&0xFFFF;
}
彙編代碼
IntCall:
push %ebp //save the context to swith back
movl %esp,%ebp
//debug only
nop
nop
//debug only
int $0x55
pop %ebp //Return to the calling function
ret
你爲'0x10'設置了哪些段描述符?這裏的'0x08'是一個更常見的值。 – user786653
CS區塊是0x10 –
那麼,它跳轉到的「隨機地址」是什麼?你有沒有堆棧跟蹤或註冊轉儲? – user786653