GameBoy\Opcode::opcode234 PHP Method

opcode234() public static method

LD n, A
public static opcode234 ( Core $core )
$core Core
    public static function opcode234(Core $core)
    {
        $core->memoryWrite(($core->memoryRead($core->programCounter + 1 & 0xffff) << 8) + $core->memoryRead($core->programCounter), $core->registerA);
        $core->programCounter = $core->programCounter + 2 & 0xffff;
    }
Opcode