about summary refs log blame commit diff stats
path: root/archive/2.transect/ex5.k2
blob: 0d7148fe22729297a412721ab85416d1bdfc7bf9 (plain) (tree)





























                                                                                  
# read a character from stdin, save it to a local on the stack, write it to stdout

fn main [
  var x : char
  call read 0/stdin, x, 1/size
  result/EBX <- call write 1/stdout, x, 1/size
  call exit-EBX
]

fn read fd : int, x : (address array byte), size : int [
  EBX <- copy fd
  ECX <- copy x
  EDX <- copy size
  EAX <- copy 3/read
  syscall
]

fn write fd : int, x : (address array byte), size : int [
  EBX <- copy fd
  ECX <- copy x
  EDX <- copy size
  EAX <- copy 4/write
  syscall
]

# like exit, but assumes the code is already in EBX
fn exit-EBX [
  code/EAX <- copy 1/exit
  syscall
]
ss='oid'>672e3e50 ^
0e4a335e ^
65361948 ^
672e3e50 ^
0e4a335e ^
65361948 ^

0e4a335e ^
65361948 ^

672e3e50 ^
0e4a335e ^
65361948 ^
672e3e50 ^

0e4a335e ^
65361948 ^

0e4a335e ^
65361948 ^

672e3e50 ^
0e4a335e ^
65361948 ^
0e4a335e ^



65361948 ^

0e4a335e ^
65361948 ^

672e3e50 ^
0e4a335e ^
65361948 ^
0e4a335e ^
65361948 ^

0e4a335e ^
65361948 ^

672e3e50 ^
0e4a335e ^
65361948 ^
0e4a335e ^
65361948 ^

0e4a335e ^
65361948 ^

672e3e50 ^
0e4a335e ^
65361948 ^
0e4a335e ^
65361948 ^

672e3e50 ^
65361948 ^

672e3e50 ^



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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103



                                                                                          
                                       






                                                                                         

                                                                                                 
                        
                            
                            
                               












                                                                     
                               
       
                                                        

                         
                                          

   
 
                                      
       
                                          
                                                        

                         
                                          

   
 
                                                
       

                                           
                                                        

                         
                                          

   
 
                                 
       



                                                                                                                              

                         
                                                     

   
 
                      
       
                                                        

                        
                                                                

   
 
                               
       
                                                        

                            
                                                                

   
 
                                  
       
                         

                        
            

   



                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - 051scenario_test.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v1">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1.05em; }
.Comment { color: #9090ff; }
.Special { color: #ff6060; }
.Identifier { color: #804000; }
-->
</style>

<script type='text/javascript'>
<!--

-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># tests for 'scenario' in previous layer</span>

scenario first_scenario_in_mu [
  run [
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </span>4
  ]
]

scenario scenario_with_comment_in_mu [
  run [
    <span class="Comment"># comment</span>
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </span>4
  ]
]

scenario scenario_with_multiple_comments_in_mu [
  run [
    <span class="Comment"># comment1</span>
    <span class="Comment"># comment2</span>
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  memory-should-contain [
    1<span class="Special"> &lt;- </span>4
  ]
]

scenario check_string_in_memory [
  run [
    1:number<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 3
    2:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 97  <span class="Comment"># 'a'</span>
    3:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 98  <span class="Comment"># 'b'</span>
    4:character<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 99  <span class="Comment"># 'c'</span>
  ]
  memory-should-contain [
    1:string<span class="Special"> &lt;- </span>[abc]
  ]
]

scenario check_trace [
  run [
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  trace-should-contain [
    mem: storing 4 <span class="Identifier">in</span> location 1
  ]
]

scenario check_trace_negative [
  run [
    1:number<span class="Special"> &lt;- </span>add 2, 2
  ]
  trace-should-not-contain [
    mem: storing 5 <span class="Identifier">in</span> location 1
  ]
]

scenario check_trace_instruction [
  run [
    trace 1, [foo], [aaa]
  ]
  trace-should-contain [
    foo: aaa
  ]
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->