Kconfig 400 B

1234567891011121314151617181920212223242526
  1. if TARGET_QEMU_MIPS
  2. config SYS_BOARD
  3. default "qemu-mips"
  4. config SYS_CONFIG_NAME
  5. default "qemu-mips" if 32BIT
  6. default "qemu-mips64" if 64BIT
  7. config SYS_TEXT_BASE
  8. default 0xbfc00000 if 32BIT
  9. default 0xffffffffbfc00000 if 64BIT
  10. config SYS_DCACHE_SIZE
  11. default 16384
  12. config SYS_DCACHE_LINE_SIZE
  13. default 32
  14. config SYS_ICACHE_SIZE
  15. default 16384
  16. config SYS_ICACHE_LINE_SIZE
  17. default 32
  18. endif