config/arch/sh/config.in
changeset 898 fe3eda71a9d0
parent 891 4d770d1f65a0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/arch/sh/config.in	Fri Oct 03 12:30:58 2008 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +# Super-H specific configuration file
     1.5 +# EXPERIMENTAL
     1.6 +
     1.7 +config ARCH_sh
     1.8 +    select ARCH_SUPPORTS_BOTH_ENDIAN
     1.9 +    select ARCH_DEFAULT_LE
    1.10 +    help
    1.11 +      The Super-H architecture, as defined by:
    1.12 +        http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
    1.13 +
    1.14 +choice
    1.15 +    bool
    1.16 +    prompt "Variant"
    1.17 +
    1.18 +config ARCH_SH_SH3
    1.19 +    bool
    1.20 +    prompt "sh3"
    1.21 +
    1.22 +config ARCH_SH_SH4
    1.23 +    bool
    1.24 +    prompt "sh4"
    1.25 +
    1.26 +config ARCH_SH_SH4A
    1.27 +    bool
    1.28 +    prompt "sh4a"
    1.29 +
    1.30 +endchoice
    1.31 +
    1.32 +config ARCH_SH_VARIANT
    1.33 +    string
    1.34 +    default "sh3"   if ARCH_SH_SH3
    1.35 +    default "sh4"   if ARCH_SH_SH4
    1.36 +    default "sh4a"  if ARCH_SH_SH4A