about summary refs log tree commit diff stats
path: root/baremetal/shell/sandbox.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-02-26 21:29:39 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-02-26 21:29:39 -0800
commit9b09ecfd82e1306244ab54ddec77384b2f81434b (patch)
tree7eea753474751d2cf66371038a789c71bc0838a3 /baremetal/shell/sandbox.mu
parent882cab69f7c999c0f79f6fc574c72dcba426a71b (diff)
downloadmu-9b09ecfd82e1306244ab54ddec77384b2f81434b.tar.gz
7810
Diffstat (limited to 'baremetal/shell/sandbox.mu')
-rw-r--r--baremetal/shell/sandbox.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/baremetal/shell/sandbox.mu b/baremetal/shell/sandbox.mu
index 6d5f64db..21cb49fd 100644
--- a/baremetal/shell/sandbox.mu
+++ b/baremetal/shell/sandbox.mu
@@ -16,7 +16,7 @@ fn initialize-sandbox _self: (addr sandbox) {
   var trace-ah/eax: (addr handle trace) <- get self, trace
   allocate trace-ah
   var trace/eax: (addr trace) <- lookup *trace-ah
-  initialize-trace trace, 0x100/lines, 0x10/visible-lines
+  initialize-trace trace, 0x1000/lines, 0x80/visible-lines
 }
 
 ## some helpers for tests