mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
505 B
16 lines
505 B
define: DUK_USE_ROM_PTRCOMP_FIRST
|
|
introduced: 1.5.0
|
|
related:
|
|
- DUK_USE_ROM_STRINGS
|
|
- DUK_USE_ROM_OBJECTS
|
|
default: 0xf800
|
|
tags:
|
|
- lowmemory
|
|
- experimental
|
|
description: >
|
|
When using ROM pointer compression ROM pointers are compressed to the
|
|
integer range [DUK_USE_ROM_PTRCOMP_FIRST,0xffff]. The default value
|
|
allows for 2048 ROM pointers, which can point to objects and strings.
|
|
|
|
You may need to lower this value to support more pointers if there are
|
|
a lot of custom ROM strings/objects.
|
|
|