GameBoy\Opcode::opcode217 PHP Méthode

opcode217() public static méthode

RETI
public static opcode217 ( Core $core )
$core Core
    public static function opcode217(Core $core)
    {
        $core->programCounter = ($core->memoryRead($core->stackPointer + 1 & 0xffff) << 8) + $core->memoryRead($core->stackPointer);
        $core->stackPointer = $core->stackPointer + 2 & 0xffff;
        //$core->IME = true;
        $core->untilEnable = 2;
    }
Opcode