about summary refs log tree commit diff stats
path: root/html/mu_instructions.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-05-18 13:01:59 -0700
committerKartik Agaram <vc@akkartik.com>2021-05-18 13:04:33 -0700
commit5396e24cba8390ca2d70d99c7e8772eee4ec3a11 (patch)
treeb266edbb6c21db7904370d082a7966783fb9e9d4 /html/mu_instructions.html
parentb4c0b12542c1f1a1e141ed0c8db2f6165af06e0f (diff)
downloadmu-5396e24cba8390ca2d70d99c7e8772eee4ec3a11.tar.gz
.
Diffstat (limited to 'html/mu_instructions.html')
-rw-r--r--html/mu_instructions.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html
index 14b2c931..e5e43cd9 100644
--- a/html/mu_instructions.html
+++ b/html/mu_instructions.html
@@ -100,6 +100,10 @@ var/reg <span class="Special">&lt;-</span> or n                   =&gt; <span cl
 or-with var, n                    =&gt; <span class="Constant">&quot;81 1/subop/or *(ebp+&quot;</span> var.stack-offset <span class="Constant">&quot;) &quot;</span> n <span class="Constant">&quot;/imm32&quot;</span>
 or-with *var/reg, n               =&gt; <span class="Constant">&quot;81 1/subop/or *&quot;</span> reg <span class="Constant">&quot; &quot;</span> n <span class="Constant">&quot;/imm32&quot;</span>
 
+var/reg <span class="Special">&lt;-</span> not                    =&gt; <span class="Constant">&quot;f7 2/subop/not %&quot;</span> reg
+not var                           =&gt; <span class="Constant">&quot;f7 2/subop/not *(ebp+&quot;</span> var.stack-offset <span class="Constant">&quot;)&quot;</span>
+not *var/reg                      =&gt; <span class="Constant">&quot;f7 2/subop/not *&quot;</span> reg
+
 var/reg <span class="Special">&lt;-</span> xor var2/reg2          =&gt; <span class="Constant">&quot;31/xor-with %&quot;</span> reg <span class="Constant">&quot; &quot;</span> reg2 <span class="Constant">&quot;/r32&quot;</span>
 var/reg <span class="Special">&lt;-</span> xor var2               =&gt; <span class="Constant">&quot;33/xor *(ebp+&quot;</span> var2.stack-offset <span class="Constant">&quot;) &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>
 var/reg <span class="Special">&lt;-</span> xor *var2/reg2         =&gt; <span class="Constant">&quot;33/xor *&quot;</span> reg2 <span class="Constant">&quot; &quot;</span> reg <span class="Constant">&quot;/r32&quot;</span>