diff options
author | Keith Packard <keithp@keithp.com> | 2018-01-04 02:22:02 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-01-04 02:22:02 -0800 |
commit | 0a0327330dcbf5531cd0f8ca8b912fa51ef44f13 (patch) | |
tree | 217ab43c512a2b661ec899f0371ec31357a1219c /src/scheme | |
parent | 637795fcf8ca52af431acec183cc961dae121e57 (diff) |
altos/scheme: Make constant built pool as large as possible
This allows building with as much constant data as will fit.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/scheme')
-rw-r--r-- | src/scheme/ao_scheme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scheme/ao_scheme.h b/src/scheme/ao_scheme.h index 428533b0..34fb2e88 100644 --- a/src/scheme/ao_scheme.h +++ b/src/scheme/ao_scheme.h @@ -71,7 +71,7 @@ ao_scheme_os_restore(void); #endif #ifdef AO_SCHEME_MAKE_CONST -#define AO_SCHEME_POOL_CONST 16384 +#define AO_SCHEME_POOL_CONST 32764 extern uint8_t ao_scheme_const[AO_SCHEME_POOL_CONST] __attribute__((aligned(4))); #define ao_scheme_pool ao_scheme_const #define AO_SCHEME_POOL AO_SCHEME_POOL_CONST |