=== ================== ===
=== Eor – Exclusive Or ===
=== ================== ===

Format
010.bbb.01

Description
The contents of the accumulator are exclusive-ORed with the specified data. Eor with "-1" my be used to
complement. 

Addressing Modes
┌─────────┬────────────┬──────────┬─────────────┬─────┬─────┬────────────────┬────────────────┐
│ Imm     │ 010.010.01 │ 49 ab    │ Eor #ab     │ bbb │ #2  │ 0100.0001 = 41 │ 0000.1000 = 08 │
│ Zpg     │ 010.001.01 │ 45 ab    │ Eor   ab    │ bbb │ #3  │ 0100.0001 = 41 │ 0000.0100 = 04 │
│ Abs     │ 010.011.01 │ 4d cd ab │ Eor abcd    │ bbb │ #4  │ 0100.0001 = 41 │ 0000.1100 = 0c │
│ Zpg,x   │ 010.101.01 │ 55 ab    │ Eor   ab,x  │ bbb │ #4  │ 0100.0001 = 41 │ 0001.0100 = 14 │
│ Abs,x   │ 010.111.01 │ 5d cd ab │ Eor abcd,x  │ bbb │ #4* │ 0100.0001 = 41 │ 0001.1100 = 1c │
│ Abs,y   │ 010.110.01 │ 59 cd ab │ Eor abcd,y  │ bbb │ #4* │ 0100.0001 = 41 │ 0001.1000 = 18 │
│ *Idz*   │ 010.100.10 │ 52 ab    │ Eor  (ab)   │ --- │ #5  │ 0100.0010 = 42 │ 0001.0000 = 10 │
│ (Zpg,x) │ 010.000.01 │ 41 ab    │ Eor  (ab,x) │ bbb │ #6  │ 0100.0001 = 41 │ 0000.0000 = 00 │
│ (Zpg),y │ 010.100.01 │ 51 ab    │ Eor  (ab),y │ bbb │ #5* │ 0100.0001 = 41 | 0001.0000 = 10 |
└─────────┴────────────┴──────────┴─────────────┴─────┴─────┴────────────────┴────────────────┘

Truth Table
    ┌───┬───┐
    │ 0 │ 1 │
┌───┼───┼───┤
│ 0 │ 0 │ 1 │
│ 1 │ 1 │ 0 │
└───┴───┴───┘

Flags
NV-BDIZC
• -   • 

Fehlerhinweise, Kommentare und Anregungen sind mir herzlich willkommen.

Letzte Aktualisierung: 2017-02-23