Bitwise operations: Difference between revisions

m
no edit summary
(→‎{{header|X86 assembly}}: Rename section for caps)
mNo edit summary
Line 886:
Debug a << b ; shift left
Debug a >> b ;shift right
; logical, not arithmetical
; Shift right is arithmetic if used on unsigned Variables
; you can multiply or divide by powers of two, which is translated into arithmetic shifts in ASM.
; No native function for rotating
EndProcedure</lang>
Anonymous user