Open main menu

CDOT Wiki β

Changes

6502 Math

25 bytes added, 01:54, 18 September 2023
Bitwise Operations
ASL Arithmetic shift left - bit 7 -> C flag, bits 0:6 -> 1:7, 0 -> bit 0
LSR Logical shift right - bit 0 -> C flag, bits 7:1 -> 6:0, 0 -> bit 7
EOR Exclusive-OR (synonym for sometimes written XORin other languages)
ORA OR (accumulator)
AND AND