diff options
Diffstat (limited to 'scripts/gen-s-parser.py')
-rwxr-xr-x | scripts/gen-s-parser.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py index 556f537e7..cc9ffc7c3 100755 --- a/scripts/gen-s-parser.py +++ b/scripts/gen-s-parser.py @@ -557,13 +557,18 @@ instructions = [ ("rtt.fresh_sub", "makeRttFreshSub(s)"), ("struct.new_with_rtt", "makeStructNew(s, false)"), ("struct.new_default_with_rtt", "makeStructNew(s, true)"), + ("struct.new", "makeStructNewStatic(s, false)"), + ("struct.new_default", "makeStructNewStatic(s, true)"), ("struct.get", "makeStructGet(s)"), ("struct.get_s", "makeStructGet(s, true)"), ("struct.get_u", "makeStructGet(s, false)"), ("struct.set", "makeStructSet(s)"), ("array.new_with_rtt", "makeArrayNew(s, false)"), ("array.new_default_with_rtt", "makeArrayNew(s, true)"), + ("array.new", "makeArrayNewStatic(s, false)"), + ("array.new_default", "makeArrayNewStatic(s, true)"), ("array.init", "makeArrayInit(s)"), + ("array.init_static", "makeArrayInitStatic(s)"), ("array.get", "makeArrayGet(s)"), ("array.get_s", "makeArrayGet(s, true)"), ("array.get_u", "makeArrayGet(s, false)"), |