page_offset.h 213 B

1234567891011
  1. /* This handles the memory map.. */
  2. #ifdef CONFIG_MMU
  3. #ifndef CONFIG_SUN3
  4. #define PAGE_OFFSET_RAW 0x00000000
  5. #else
  6. #define PAGE_OFFSET_RAW 0x0E000000
  7. #endif
  8. #else
  9. #define PAGE_OFFSET_RAW CONFIG_RAMBASE
  10. #endif