Config.in.mips.choice 651 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice ADK_TARGET_MIPS_CPU_ARCH
  4. prompt "MIPS ISA"
  5. depends on ADK_TARGET_ARCH_MIPS
  6. config ADK_CPU_MIPS_MIPS32
  7. bool "MIPS32"
  8. select ADK_CPU_MIPS32
  9. config ADK_CPU_MIPS_MIPS32R2
  10. bool "MIPS32r2"
  11. select ADK_CPU_MIPS32R2
  12. endchoice
  13. choice ADK_TARGET_MIPS_FLOAT
  14. prompt "Float configuration"
  15. depends on ADK_TARGET_ARCH_MIPS
  16. config ADK_TARGET_MIPS_HARD_FLOAT
  17. bool "hard-float"
  18. select ADK_hard_float
  19. config ADK_TARGET_MIPS_SOFT_FLOAT
  20. bool "soft-float"
  21. select ADK_soft_float
  22. endchoice