CPU::Emulator::6502::Op::LDY - Load Y register from memory


Games-NES-Emulator documentation Contained in the Games-NES-Emulator distribution.

Index


Code Index:

NAME

Top

CPU::Emulator::6502::Op::LDY - Load Y register from memory

SYNOPSIS

Top

DESCRIPTION

Top

METHODS

Top

ldy( $addr )

Loads the Y register from $addr.

AUTHOR

Top

Brian Cassidy <bricas@cpan.org>

COPYRIGHT AND LICENSE

Top

SEE ALSO

Top

* CPU::Emulator::6502

Games-NES-Emulator documentation Contained in the Games-NES-Emulator distribution.
package CPU::Emulator::6502::Op::LDY;

use strict;
use warnings;

use constant INSTRUCTIONS => {
    0xA0 => {
        addressing => 'immediate',
        cycles => 2,
        code => \&ldy,
    },
    0xA4 => {
        addressing => 'zero_page',
        cycles => 3,
        code => \&ldy,
    },
    0xB4 => {
        addressing => 'zero_page_x',
        cycles => 4,
        code => \&ldy,
    },
    0xAC => {
        addressing => 'absolute',
        cycles => 4,
        code => \&ldy,
    },
    0xBC => {
        addressing => 'absolute_x',
        cycles => 4,
        code => \&ldy,
    },
};

sub ldy {
    my $self = shift;
    my $reg = $self->registers;

    $reg->{ y } = $self->RAM_read( shift ) & 0xff;
    $self->set_nz( $reg->{ y } );
}

1;