GameBoy\Opcode::opcode225 PHP Method

opcode225() public static method

POP HL
public static opcode225 ( Core $core )
$core Core
    public static function opcode225(Core $core)
    {
        $core->registersHL = ($core->memoryRead($core->stackPointer + 1 & 0xffff) << 8) + $core->memoryRead($core->stackPointer);
        $core->stackPointer = $core->stackPointer + 2 & 0xffff;
    }
Opcode