summaryrefslogblamecommitdiff
path: root/apps/examples/pashello/Kconfig
blob: c134906774e8c835c272ebc99fa9ce60cebcb7fb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                             
                                      
 



                                               

                                     



                                                           














                                                                                    
     
#
# 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