about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--html/mu_instructions.html11
-rw-r--r--mu_instructions11
2 files changed, 14 insertions, 8 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html
index af290d70..858e9d27 100644
--- a/html/mu_instructions.html
+++ b/html/mu_instructions.html
@@ -37,6 +37,10 @@ Conversely, registers that are just read from must not be passed as inputs.
 The following chart shows all the instruction forms supported by Mu, along with
 the SubX instruction they're translated to.
 
+<span class="muComment">## Integer instructions</span>
+
+These instructions use the general-purpose registers.
+
 var/<span class="Constant">eax</span> <span class="SpecialChar">&lt;-</span> increment              =&gt; <span class="Constant">&quot;40/increment-eax&quot;</span>
 var/<span class="Constant">ecx</span> <span class="SpecialChar">&lt;-</span> increment              =&gt; <span class="Constant">&quot;41/increment-ecx&quot;</span>
 var/<span class="Constant">edx</span> <span class="SpecialChar">&lt;-</span> increment              =&gt; <span class="Constant">&quot;42/increment-edx&quot;</span>
@@ -150,11 +154,10 @@ compare *var/reg, n               =&gt; <span class="Constant">&quot;81 7/subop/
 var/reg <span class="SpecialChar">&lt;-</span> multiply var2          =&gt; <span class="Constant">&quot;0f af/multiply *(ebp+&quot;</span> var2.stack-offset <span class="Constant">&quot;) &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
 var/reg <span class="SpecialChar">&lt;-</span> multiply *var2/reg2    =&gt; <span class="Constant">&quot;0f af/multiply *&quot;</span> reg2 <span class="Constant">&quot; &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
 
-<span class="muComment"># Floating-point operations</span>
+<span class="muComment">## Floating-point operations</span>
 
-All the instructions so far use Intel's general-purpose integer registers.
-However, some of them translate to different SubX if their arguments are in
-floating-point registers.
+These instructions operate on either floating-point registers (xreg) or
+general-purpose registers (reg) in indirect mode.
 
 var/xreg <span class="SpecialChar">&lt;-</span> add var2/xreg2        =&gt; <span class="Constant">&quot;f3 0f 58/add %&quot;</span> xreg2 <span class="Constant">&quot; &quot;</span> xreg1 <span class="Constant">&quot;/x32&quot;</span>
 var/xreg <span class="SpecialChar">&lt;-</span> add var2              =&gt; <span class="Constant">&quot;f3 0f 58/add *(ebp+&quot;</span> var2.stack-offset <span class="Constant">&quot;) &quot;</span> xreg <span class="Constant">&quot;/x32&quot;</span>
diff --git a/mu_instructions b/mu_instructions
index 8879c878..f0e66917 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -13,6 +13,10 @@ Conversely, registers that are just read from must not be passed as inputs.
 The following chart shows all the instruction forms supported by Mu, along with
 the SubX instruction they're translated to.
 
+## Integer instructions
+
+These instructions use the general-purpose registers.
+
 var/eax <- increment              => "40/increment-eax"
 var/ecx <- increment              => "41/increment-ecx"
 var/edx <- increment              => "42/increment-edx"
@@ -126,11 +130,10 @@ compare *var/reg, n               => "81 7/subop/compare *" reg " " n "/imm32"
 var/reg <- multiply var2          => "0f af/multiply *(ebp+" var2.stack-offset ") " reg "/r32"
 var/reg <- multiply *var2/reg2    => "0f af/multiply *" reg2 " " reg "/r32"
 
-# Floating-point operations
+## Floating-point operations
 
-All the instructions so far use Intel's general-purpose integer registers.
-However, some of them translate to different SubX if their arguments are in
-floating-point registers.
+These instructions operate on either floating-point registers (xreg) or
+general-purpose registers (reg) in indirect mode.
 
 var/xreg <- add var2/xreg2        => "f3 0f 58/add %" xreg2 " " xreg1 "/x32"
 var/xreg <- add var2              => "f3 0f 58/add *(ebp+" var2.stack-offset ") " xreg "/x32"