GameBoy\Opcode::opcode208 PHP Method

opcode208() public static method

RET !FC
public static opcode208 ( Core $core )
$core Core
    public static function opcode208(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