diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-22 16:42:59 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-22 16:42:59 -0700 |
commit | d55144949b70f037a6ec77aebc9a1eee15d3a7a3 (patch) | |
tree | d2ff48731512ca2d966c5051a2f44e7c89075e99 | |
parent | cea79ae180c683e7e60cb09977cdc501b8737632 (diff) | |
download | mu-d55144949b70f037a6ec77aebc9a1eee15d3a7a3.tar.gz |
increase some buffer sizes
We can now natively translate mu.subx again.
-rw-r--r-- | 069allocate.subx | 2 | ||||
-rw-r--r-- | apps/subx-params.subx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/069allocate.subx b/069allocate.subx index b6433689..0c75ece0 100644 --- a/069allocate.subx +++ b/069allocate.subx @@ -32,7 +32,7 @@ Heap: # allocation-descriptor # a reasonable default Heap-size: # int - 0x400000/imm32/4MB + 0x600000/imm32/6MB Next-alloc-id: # int 0x100/imm32 # save a few alloc ids for fake handles diff --git a/apps/subx-params.subx b/apps/subx-params.subx index c3827ad7..cf1412bc 100644 --- a/apps/subx-params.subx +++ b/apps/subx-params.subx @@ -4,11 +4,11 @@ # largest segment that can be translated Segment-size: - 0x100000/imm32/1MB + 0x200000/imm32/2MB # maximum size of input textual stream (spanning all segments) Input-size: - 0x200000/imm32/2MB + 0x400000/imm32/4MB # number of labels we can translate to addresses Max-labels: |