about summary refs log tree commit diff stats
path: root/html/mu_instructions.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/mu_instructions.html')
-rw-r--r--html/mu_instructions.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html
index 1c50a228..f510d850 100644
--- a/html/mu_instructions.html
+++ b/html/mu_instructions.html
@@ -177,7 +177,7 @@ var/reg <span class="Special">&lt;-</span> multiply *var2/reg2    =&gt; <span cl
 In the following instructions types are provided for clarity even if they must
 be provided in an earlier 'var' declaration.
 
-Address operations
+<span class="Comment"># Address operations</span>
 
 var/reg: (addr T) <span class="Special">&lt;-</span> address var2: T
   =&gt; <span class="Constant">&quot;8d/copy-address *(ebp+&quot;</span> var2.stack-offset <span class="Constant">&quot;) &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
@@ -202,7 +202,7 @@ var/reg: (offset T) <span class="Special">&lt;-</span> compute-offset arr: (addr
 var/reg <span class="Special">&lt;-</span> index arr/rega: (addr array T), o/rego: offset
   =&gt; <span class="Constant">&quot;8d/copy-address *(&quot;</span> rega <span class="Constant">&quot;+&quot;</span> rego <span class="Constant">&quot;+4) &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
 
-User-defined types
+<span class="Comment"># User-defined types</span>
 
 If a record (product) type T was defined to have elements a, b, c, ... of
 types T_a, T_b, T_c, ..., then accessing one of those elements f of type T_f:
@@ -212,7 +212,7 @@ var/reg: (addr T_f) <span class="Special">&lt;-</span> get var2/reg2: (addr F),
 var/reg: (addr T_f) <span class="Special">&lt;-</span> get var2: (addr F), f
   =&gt; <span class="Constant">&quot;8d/copy-address *(ebp+&quot;</span> var2.stack-offset <span class="Constant">&quot;+&quot;</span> offset(f) <span class="Constant">&quot;) &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
 
-Handles for safe access to the heap
+<span class="Comment"># Handles for safe access to the heap</span>
 
 copy-handle-to dest: (handle T), src: (handle T)
   =&gt; <span class="Constant">&quot;50/push-eax&quot;</span>