summaryrefslogtreecommitdiff
path: root/nuttx/arch/z80/src/z8/Kconfig
blob: 79bb5eb5c77c23dce12f0a1fc3445f61ef5fa002 (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
27
28
29
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_CHIP_Z8

# UART0/1 always enabled

config Z8_UART0
	bool
	default y
	select ARCH_HAVE_UART0

config Z8_UART1
	bool
	default y
	select ARCH_HAVE_UART1

# The ZiLOG ZDS-II Windows toolchain is the only toolchain available for
# the ez80.
#

config Z8_TOOLCHAIN_ZDSII
	bool
	default y if ARCH_CHIP_Z8
	default n if !ARCH_CHIP_Z8

endif