diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/global.mu | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/global.mu b/shell/global.mu index 693def1b..c05a8274 100644 --- a/shell/global.mu +++ b/shell/global.mu @@ -174,7 +174,8 @@ fn render-primitives screen: (addr screen), xmin: int, ymin: int, xmax: int, yma y <- increment var tmpx/eax: int <- copy xmin tmpx <- draw-text-rightward screen, " cr", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black - tmpx <- draw-text-rightward screen, ": screen # move cursor down and to left margin", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black + tmpx <- draw-text-rightward screen, ": screen ", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black + tmpx <- draw-text-rightward screen, "# move cursor down and to left margin", tmpx, xmax, y, 9/fg=blue, 0x12/bg=almost-black y <- increment var tmpx/eax: int <- copy xmin tmpx <- draw-text-rightward screen, "pixel graphics", tmpx, xmax, y, 0x7/fg=grey, 0x12/bg=almost-black |