EOR - Exclusive-OR with Memory ;flags(N,Z)
EOR #opr ;A <= A eor opr ;(IMM) 8 bit immediate
EOR opr ;A <= A eor (opr) ;(DIR) 8 bit direct
EOR opr ;A <= A eor (opr) ;(EXT) 16 bit extended
EOR ,X ;A <= A eor (X) ;(IX) indexed no offset
EOR opr,X ;A <= A eor (opr+X) ;(IX1) indexed w/8 bit offset
EOR opr,X ;A <= A eor (opr+X) ;(IX2) indexed w/16 bit offset
Performs the logical exclusive-OR between the contents of ACCA and the
contents of M(opr) and places the result in ACCA.