summaryrefslogtreecommitdiff
path: root/apps/examples/pashello/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/pashello/Kconfig')
-rw-r--r--apps/examples/pashello/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/examples/pashello/Kconfig b/apps/examples/pashello/Kconfig
index 5591d6b5b..c13490677 100644
--- a/apps/examples/pashello/Kconfig
+++ b/apps/examples/pashello/Kconfig
@@ -6,8 +6,25 @@
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