=== ================= ===
=== And – Logical And ===
=== ================= ===

Format
001.bbb.01

Description
Perform the logical AND of the accumulator and specified data. The result is left in the accumulator.
May be used to force a "0" at selected bit locations.

Addressing Modes
┌─────────┬────────────┬──────────┬─────────────┬─────┬─────┬────────────────┬────────────────┐
│ Imm     │ 001.010.01 │ 29 ab    │ And #ab     │ bbb │ #2  │ 0010.0001 = 21 │ 0000.1000 = 08 │
│ Zpg     │ 001.001.01 │ 25 ab    │ And  ab     │ bbb │ #3  │ 0010.0001 = 21 │ 0000.0100 = 04 │
│ Abs     │ 001.011.01 │ 2d cd ab │ And abcd    │ bbb │ #4  │ 0010.0001 = 21 │ 0000.1100 = 0c │
│ Zpg,x   │ 001.101.01 │ 35 ab    │ And   ab,y  │ bbb │ #4  │ 0010.0001 = 21 │ 0001.0100 = 14 │
│ Abs,x   │ 001.111.01 │ 3d cd ab │ And abcd,x  │ bbb │ #4* │ 0010.0001 = 21 │ 0001.1100 = 1c │
│ Abs,y   │ 001.110.01 │ 39 cd ab │ And abcd,y  │ bbb │ #4* │ 0010.0001 = 21 │ 0001.1000 = 18 │
│ *Idz*   │ 001.100.10 │ 32 ab    │ And  (ab)   │ --- │ #5  │ 0010.0010 = 22 │ 0001.0000 = 10 │
│ (Zpg,x) │ 001.000.01 │ 21 ab    │ And  (ab,x) │ bbb │ #6  │ 0010.0001 = 21 │ 0000.0000 = 00 │
│ (Zpg),y │ 001.100.01 │ 31 ab    │ And  (ab),y │ bbb │ #5* │ 0010.0001 = 21 │ 0001.0000 = 10 │
└─────────┴────────────┴──────────┴─────────────┴─────┴─────┴────────────────┴────────────────┘

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

Flags
NV-BDIZC
• -   • 

Fehlerhinweise, Kommentare und Anregungen sind mir herzlich willkommen.

Letzte Aktualisierung: 2017-02-23