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

Y Index Register: Difference between revisions

From SnesLab
Jump to: navigation, search
(→‎Reference: 8.1.3)
(flow INY/DEY into sentence)
Line 1: Line 1:
The [[Y Index Register]] exists on 65x processors and often holds the current index when iterating over things.
The [[Y Index Register]] exists on 65x processors and often holds the current index when iterating over things.  It can be incremented or decremented by one with [[INY]] or [[DEY]], but there is no instruction to add or subtract more than one.


On the [[S-SMP]] it is always 8 bits wide.  On the [[65c816]], it may be 8 or 16 bits wide.
On the [[S-SMP]] it is always 8 bits wide.  On the [[65c816]], it may be 8 or 16 bits wide.
Line 6: Line 6:


=== See Also ===
=== See Also ===
* [[INY]]
* [[DEY]]
* [[LDY]]
* [[LDY]]
* [[STY]]
* [[STY]]

Revision as of 02:17, 1 August 2024

The Y Index Register exists on 65x processors and often holds the current index when iterating over things. It can be incremented or decremented by one with INY or DEY, but there is no instruction to add or subtract more than one.

On the S-SMP it is always 8 bits wide. On the 65c816, it may be 8 or 16 bits wide.

Unlike the X index register, there are no instructions to transfer value of the stack pointer to/from Y.

See Also

Reference