We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

CLC

From SnesLab
Revision as of 01:53, 10 August 2024 by Xetheria (talk | contribs) (flowed REP into body)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Basic Info
Addressing Mode Opcode Length Speed
Implied (type 2) 18 1 byte 2 cycles
Flags Affected
N V M X D I Z C
. . . . . . . 0

CLC is a 65x instruction that clears the carry flag.

The 6502 lacks an add-without-carry instruction, so it is important to make sure the carry flag is clear before doing an ADC or else the sum will be one too great.

No other flags are affected.

Syntax

CLC

One of the first instructions a SNES game runs after coming out of reset is often a CLC so that XCE can switch to native mode.

To clear more than one flag at the same time, use REP.

See Also

External Links