diff options
author | lloyd <[email protected]> | 2006-08-13 15:24:05 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-13 15:24:05 +0000 |
commit | b06b72ff77d1b656034185790a40e13ee0f4d644 (patch) | |
tree | 1f03b361f995859651040335feafc8ce05e1b7e6 /modules/alg_ia32/asm_macr.h | |
parent | 06ac56113eebe754114fa1da9334bcdc261165c2 (diff) |
Add a macro for the not instruction
Diffstat (limited to 'modules/alg_ia32/asm_macr.h')
-rw-r--r-- | modules/alg_ia32/asm_macr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/alg_ia32/asm_macr.h b/modules/alg_ia32/asm_macr.h index a4409a211..bbbb0239c 100644 --- a/modules/alg_ia32/asm_macr.h +++ b/modules/alg_ia32/asm_macr.h @@ -92,6 +92,7 @@ func_name: #define XOR(TO, FROM) xorl FROM, TO #define AND(TO, FROM) andl FROM, TO #define OR(TO, FROM) orl FROM, TO +#define NOT(REG) notl REG #define ZEROIZE(REG) XOR(REG, REG) #define ROTL_IMM(REG, NUM) roll IMM(NUM), REG |