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

Carry Flag: Difference between revisions

From SnesLab
Jump to: navigation, search
(→‎Reference: hid archive URL)
(borrow flag)
Line 5: Line 5:
The following other 10 instructions have side effects that directly affect the carry flag:
The following other 10 instructions have side effects that directly affect the carry flag:


* [[ADC]]
* [[ADC]] (becomes set when an addition overflows)
* [[ASL]] (becomes whatever the most significant bit was)
* [[ASL]] (becomes whatever the most significant bit was)
* [[CMP]]
* [[CMP]]
Line 13: Line 13:
* [[ROL]] (becomes whatever the most significant bit was)
* [[ROL]] (becomes whatever the most significant bit was)
* [[ROR]] (becomes whatever bit 0 was)
* [[ROR]] (becomes whatever bit 0 was)
* [[SBC]]
* [[SBC]] (where it is often called the "borrow flag" instead)
* [[XCE]] (becomes whatever the e flag was)
* [[XCE]] (becomes whatever the e flag was)



Revision as of 16:14, 7 August 2024

The Carry Flag (C) exists on the 65c816 as bit 0 of the status register.

It can be set with SEC and cleared with CLC. Or, SEP and REP can be used.

The following other 10 instructions have side effects that directly affect the carry flag:

  • ADC (becomes set when an addition overflows)
  • ASL (becomes whatever the most significant bit was)
  • CMP
  • CPX
  • CPY
  • LSR (becomes whatever bit 0 was)
  • ROL (becomes whatever the most significant bit was)
  • ROR (becomes whatever bit 0 was)
  • SBC (where it is often called the "borrow flag" instead)
  • XCE (becomes whatever the e flag was)

The following two instructions indirectly affect the carry flag by loading the status register:

The carry flag influences whether BCS and BCC branch or not.

See Also

Reference