Bitwise operations: Difference between revisions

Content added Content deleted
m (→‎{{header|6502 Assembly}}: fixed typos from copy-pasting)
Line 211: Line 211:
LDX temp
LDX temp
loop_ROL:
loop_ROL:
ROL
LSR
DEX
DEX
BPL loop_ROL
BPL loop_ROL
Line 219: Line 219:
LDX temp
LDX temp
loop_ROR:
loop_ROR:
ROR
LSR
DEX
DEX
BPL loop_ROR
BPL loop_ROR