about summary refs log tree commit diff stats
path: root/120allocate.subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-25 15:56:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-25 15:56:34 -0700
commit22a95bd813c284af582cac59a6ee490e2a0d4665 (patch)
tree166d4f60badd62bdddd6a6ccbee260d5875a07da /120allocate.subx
parent8185a605c6cf1995477954aa7868785e770f1c69 (diff)
downloadmu-22a95bd813c284af582cac59a6ee490e2a0d4665.tar.gz
expand memory to 2GB
It requires more than 1GB to fill the screen with a chessboard pattern
using the definition in shell/iterative-definitions.limg.

I also speed up the chessboard program by clearing the screen up front
and then only rendering the white pixels.
Diffstat (limited to '120allocate.subx')
-rw-r--r--120allocate.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/120allocate.subx b/120allocate.subx
index 639b9635..c4f954f8 100644
--- a/120allocate.subx
+++ b/120allocate.subx
@@ -28,7 +28,7 @@ Heap:  # allocation-descriptor
   # curr
   0x01000000/imm32  # 16 MB
   # limit
-  0x08000000/imm32  # 128 MB is how much RAM Qemu models by default
+  0x80000000/imm32  # 2 GB
 
 Next-alloc-id:  # int
   0x100/imm32  # save a few alloc ids for fake handles