about summary refs log tree commit diff stats
path: root/mu_instructions
diff options
context:
space:
mode:
Diffstat (limited to 'mu_instructions')
-rw-r--r--mu_instructions4
1 files changed, 4 insertions, 0 deletions
diff --git a/mu_instructions b/mu_instructions
index 7a458660..2dca40c4 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -75,6 +75,10 @@ var/reg <- or n                   => "81 1/subop/or %" reg " " n "/imm32"
 or-with var, n                    => "81 1/subop/or *(ebp+" var.stack-offset ") " n "/imm32"
 or-with *var/reg, n               => "81 1/subop/or *" reg " " n "/imm32"
 
+var/reg <- not                    => "f7 2/subop/not %" reg
+not var                           => "f7 2/subop/not *(ebp+" var.stack-offset ")"
+not *var/reg                      => "f7 2/subop/not *" reg
+
 var/reg <- xor var2/reg2          => "31/xor-with %" reg " " reg2 "/r32"
 var/reg <- xor var2               => "33/xor *(ebp+" var2.stack-offset ") " reg "/r32"
 var/reg <- xor *var2/reg2         => "33/xor *" reg2 " " reg "/r32"