How to Use Sniffer
Last updated
Operator
• + - × ÷ Modulo ➡ + - * / #
• XOR ➡ @^ ➡ xor
• NOT ➡ @~ ➡ not
• AND ➡ @& ➡ and
• OR ➡ @| ➡ or
• Signed left shift n ➡ @<<n
• Signed right shift n ➡ @>>n
• More
Examples
• b2=b1 ➡ b2=b1
• b4=b2+0x1F ➡ b4=b2+31(decimal)
• b15=b0 xor b1 ➡ b15=b0 xor b1
• b2=not b0 ➡ b2=not b0
Note
• Convert constant to decimal
• Drag up/down to change the order of calculation