123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include "../../../common/glib.h"
- #include "../../../exception/irq.h"
- #define PIC_EOI 0x20
- #define PIC_master 0x20
- #define PIC2_slave 0xA0
- void init_8259A();
- void do_IRQ(struct pt_regs* rsp, ul number);
|