about summary refs log tree commit diff stats
path: root/README
Commit message (Collapse)AuthorAgeFilesLines
* added dev.c instead of kb.cAnselm R. Garbe2006-07-131-1/+1
|
* small changes to READMEAnselm R. Garbe2006-07-131-3/+3
|
* added logo+descriptionAnselm R. Garbe2006-07-131-13/+12
|
* removed unnecessary crapAnselm R. Garbe2006-07-131-4/+2
|
* added mouse-based resizalsAnselm R. Garbe2006-07-111-9/+1
|
* updated READMEAnselm R. Garbe2006-07-111-5/+15
|
* fixed several stuff (gridwm gets better and better)Anselm R. Garbe2006-07-111-0/+1
|
* initial importAnselm R. Garbe2006-07-101-0/+40
us revision' href='/akkartik/mu/blame/display.mu?h=hlt&id=aa0888459fc2ca41b0ad6bef5bfa72223ca33945'>^
6a0f71b9 ^
bc643692 ^
12d73ee8 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
0012c703 ^
6a0f71b9 ^
290fe117 ^
54d48b25 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

                                       
          
              
               
                                               
                                                    
                           
                       

                               
                           
                             
                       
                           
                             
                           
                              
                           
                             
                           
                           
                           
               
 
# example program: managing the display

def main [
  open-console
  clear-display
  print-character-to-display 97, 1/red, 2/green
  1:num/raw, 2:num/raw <- cursor-position-on-display
  wait-for-some-interaction
  clear-line-on-display
  move-cursor-on-display 0, 4
  print-character-to-display 98
  wait-for-some-interaction
  move-cursor-on-display 0, 0
  clear-line-on-display
  wait-for-some-interaction
  move-cursor-down-on-display
  wait-for-some-interaction
  move-cursor-right-on-display
  wait-for-some-interaction
  move-cursor-left-on-display
  wait-for-some-interaction
  move-cursor-up-on-display
  wait-for-some-interaction
  close-console
]