diff options
Diffstat (limited to 'cgopts.s')
-rw-r--r-- | cgopts.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cgopts.s b/cgopts.s new file mode 100644 index 0000000..1e02239 --- /dev/null +++ b/cgopts.s @@ -0,0 +1,15 @@ + .data + + .global ab_stack_size + .global flags + .global heap_size + .global heap_size_multiple + .global initial_heap_size + + .align + +ab_stack_size: .word 0x0007d000 @ 500k +flags: .word 0x00000008 @ (from clm.c) +heap_size: .word 0x00a00000 @ 10M +heap_size_multiple: .word 0x00019000 @ 100 << 10 (100k, from clm.c) +initial_heap_size: .word 0x00001400 @ 20 << 8 (from clm.c) |