fake-apic.h 305 B

1234567891011121314
  1. #ifndef SILLY_APIC_H
  2. #define SILLY_APIC_H
  3. #define APIC_BASE 0x1000
  4. #define APIC_SIZE 0x100
  5. #define APIC_REG_NCPU 0x00
  6. #define APIC_REG_ID 0x04
  7. #define APIC_REG_SIPI_ADDR 0x08
  8. #define APIC_REG_SEND_SIPI 0x0c
  9. #define APIC_REG_IPI_VECTOR 0x10
  10. #define APIC_REG_SEND_IPI 0x14
  11. #endif