diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-27 22:02:13 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-27 22:02:13 -0500 |
commit | f633ca9108a6bd90408930eeb367a33deeb6b91f (patch) | |
tree | 5bfc6224812903db26aba8716b58dab5431a888a /x86 | |
parent | 784f819f976042fbf683a452aa1e46dcff4a49a5 (diff) |
configure stack and dict sizes
Diffstat (limited to 'x86')
-rw-r--r-- | x86/main.c | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -18,19 +18,11 @@ #include <stdio.h> -void foci_putchar(int ch) -{ - putchar(ch); -} - -int foci_getchar(void) -{ - return getchar(); -} +static intptr_t dict[8192]; int main() { - init(); + init(dict); for (;;) { interpret(); @@ -40,3 +32,13 @@ int main() return 0; } +void foci_putchar(int ch) +{ + putchar(ch); +} + +int foci_getchar(void) +{ + return getchar(); +} + |