summary refs log tree commit diff stats
path: root/mysql-php/vendor
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@bccr>2024-01-10 13:53:54 +0530
committerSudipto Mallick <smlckz@bccr>2024-01-10 13:53:54 +0530
commit5ea0ab6272277357c847ce324582e08cff58d134 (patch)
tree870571d13f1fb6f0135463e1d1d71e05dbd0c641 /mysql-php/vendor
parenta914804458e9697f1a9e0430c72ffe941582bbf5 (diff)
downloadzadania-5ea0ab6272277357c847ce324582e08cff58d134.tar.gz
Incorporate changes to Java assignment #5
Updating assignment as directed
Diffstat (limited to 'mysql-php/vendor')
0 files changed, 0 insertions, 0 deletions
/span> ^
7bf8adb8 ^
328d76e4 ^
1a43d12b ^
ec0d5bb1 ^
1a43d12b ^

328d76e4 ^
74f1512f ^
328d76e4 ^
1a43d12b ^
c1e841fc ^
328d76e4 ^

74f1512f ^
328d76e4 ^
1a43d12b ^
c1e841fc ^
328d76e4 ^

74f1512f ^
328d76e4 ^
1a43d12b ^
c1e841fc ^
328d76e4 ^

74f1512f ^
328d76e4 ^
08c55cb2 ^
1a43d12b ^
c1e841fc ^
328d76e4 ^

ec0d5bb1 ^

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46


                        
                                                   
         
                             
     
                                                           



                                                                              
                                                                                  
                                      
                                  
   

                                          
     
                         
                 
                                                                
                        

     
                         
                 
                                                                        
                        

     
                         
                 
                                                                        
                      

     
                         
                 
                                             
                                                                
                         

        

   
# Cursor-based motions.
#
# To build a disk image:
#   ./translate apps/ex7.mu        # emits code.img
# To run:
#   qemu-system-i386 code.img
# Or:
#   bochs -f bochsrc               # bochsrc loads code.img
#
# Expected output: an interactive game a bit like "snakes". Try pressing h, j,
# k, l.

fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
  var space/eax: grapheme <- copy 0x20
  set-cursor-position screen, 0, 0
  {
    draw-cursor screen, space
    var key/eax: byte <- read-key keyboard
    {
      compare key, 0x68/h
      break-if-!=
      draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg
      move-cursor-left 0
    }
    {
      compare key, 0x6a/j
      break-if-!=
      draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg
      move-cursor-down 0
    }
    {
      compare key, 0x6b/k
      break-if-!=
      draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg
      move-cursor-up 0
    }
    {
      compare key, 0x6c/l
      break-if-!=
      var g/eax: code-point <- copy 0x2d/dash
      draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg
      move-cursor-right 0
    }
    loop
  }
}