about summary refs log tree commit diff stats
path: root/html/apps/subx-params.subx.html
Commit message (Expand)AuthorAgeFilesLines
* 6119Kartik Agaram2020-03-101-1/+1
* 6065Kartik Agaram2020-02-271-2/+2
* 6001Kartik Agaram2020-02-091-1/+1
* 5933Kartik Agaram2020-01-271-2/+2
* 5806Kartik Agaram2019-12-091-0/+4
* 5683Kartik Agaram2019-09-201-0/+73
/span> ^
f7746778 ^
0518944e ^


7bf8adb8 ^
83c25a03 ^

0518944e ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                                                        

                        
                                                   
         
                             
     
                                                           


                                                                   
                                                                                  

                                                                                                                            
 
# Draw a single line of ASCII text using the built-in font (GNU unifont)
# Also demonstrates bounds-checking _before_ drawing.
#
# To build a disk image:
#   ./translate ex5.mu             # emits code.img
# To run:
#   qemu-system-i386 code.img
# Or:
#   bochs -f bochsrc               # bochsrc loads code.img
#
# Expected output: text in green near the top-left corner of screen

fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
  var dummy/eax: int <- draw-text-rightward screen, "hello from baremetal Mu!", 0x10/x, 0x400/xmax, 0x10/y, 0xa/fg, 0/bg
  dummy <- draw-text-rightward screen, "you shouldn't see this", 0x10/x, 0xa0/xmax, 0x30/y, 3/fg, 0/bg  # xmax is too narrow
}