2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-07 00:45:52 +08:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-17 21:48:39 +08:00
|
|
|
|
|
|
|
if ARCH_HC
|
2014-03-06 07:27:58 +08:00
|
|
|
|
2012-04-17 21:48:39 +08:00
|
|
|
choice
|
|
|
|
prompt "HC chip selection"
|
|
|
|
default ARCH_CHIP_MCS92S12NEC64
|
|
|
|
|
|
|
|
config ARCH_CHIP_MCS92S12NEC64
|
|
|
|
bool "MCS92S12NEC64"
|
2014-03-06 07:27:58 +08:00
|
|
|
select ARCH_HSC12
|
2012-04-17 21:48:39 +08:00
|
|
|
---help---
|
|
|
|
Motorola/Freescale MCS92S12NEC64 (M9S12)
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config ARCH_HSC12
|
|
|
|
bool
|
2014-03-06 07:27:58 +08:00
|
|
|
default n
|
2012-04-17 21:48:39 +08:00
|
|
|
|
|
|
|
config ARCH_CHIP
|
|
|
|
string
|
|
|
|
default "m9s12" if ARCH_CHIP_MCS92S12NEC64
|
|
|
|
|
2012-04-18 06:54:31 +08:00
|
|
|
source arch/hc/src/m9s12/Kconfig
|
|
|
|
|
2014-03-06 07:27:58 +08:00
|
|
|
endif # ARCH_HC
|