summaryrefslogtreecommitdiff
path: root/nuttx/arch/hc/Kconfig
blob: 720c6ff0db105ad79a9e56cf68006d41d0d4b5bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_HC
choice
	prompt "HC chip selection"
	default ARCH_CHIP_MCS92S12NEC64

config ARCH_CHIP_MCS92S12NEC64
	bool "MCS92S12NEC64"
	---help---
		Motorola/Freescale MCS92S12NEC64 (M9S12)

endchoice

config ARCH_HSC12
	bool
	default y			if ARCH_CHIP_MCS92S12NEC64

config ARCH_CHIP
	string
	default "m9s12"		if ARCH_CHIP_MCS92S12NEC64

endif