2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 18:45:52 +02:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
config EXAMPLES_PASHELLO
|
|
|
|
bool "Pascal \"Hello, World!\" example"
|
|
|
|
default n
|
2014-05-09 16:52:11 +02:00
|
|
|
depends on INTERPRETERS_PCODE
|
|
|
|
select INTERPRETERS_PRUN
|
2012-04-13 04:14:09 +02:00
|
|
|
---help---
|
|
|
|
Enable the Pascal \"Hello, World!\" example
|
|
|
|
|
|
|
|
if EXAMPLES_PASHELLO
|
2014-05-09 16:52:11 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|