GameBoy\Opcode::opcode216 PHP Method

opcode216() public static method

RET FC
public static opcode216 ( Core $core )
$core Core
    public static function opcode216(Core $core)
    {
        if ($core->FCarry) {
            $core->programCounter = ($core->memoryRead($core->stackPointer + 1 & 0xffff) << 8) + $core->memoryRead($core->stackPointer);
            $core->stackPointer = $core->stackPointer + 2 & 0xffff;
            $core->CPUTicks += 3;
        }
    }
Opcode