summaryrefslogtreecommitdiff
path: root/apps/examples/pashello/Kconfig
blob: c134906774e8c835c272ebc99fa9ce60cebcb7fb (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
30
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_PASHELLO
	bool "Pascal \"Hello, World!\" example"
	default n
	depends on INTERPRETERS_PCODE
	select INTERPRETERS_PRUN
	---help---
		Enable the Pascal \"Hello, World!\" example

if EXAMPLES_PASHELLO

config EXAMPLES_PASHELLO_VARSTACKSIZE
	int "P-Code variable stack size"
	default 1024
	---help---
		This size of the P-Code variable storage area to be allocated by the
		P-Code runtime.

config EXAMPLES_PASHELLO_STRSTACKSIZE
	int "P-Code string stack size"
	default 128
	---help---
		This size of the P-Code string stack area to be allocated by the
		P-Code runtime.

endif