diff options
Diffstat (limited to 'cgopts.s')
-rw-r--r-- | cgopts.s | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -8,5 +8,11 @@ heap_size: .word 0x00200000 @ 2M ab_stack_size: .word 0x00080000 @ 500k flags: .word 0x00000008 @ (from clm.c) + +@ Wrong values, as I used since September... +@heap_size_multiple: .word 0x00019000 @ 20 << 8 (from clm.c) +@initial_heap_size: .word 0x00001400 @ 100 << 10 (100k, from clm.c) + +@ Correct values, as found in clm heap_size_multiple: .word 0x00001400 @ 20 << 8 (from clm.c) initial_heap_size: .word 0x00019000 @ 100 << 10 (100k, from clm.c) |