GameBoy\Cbopcode::cbopcode44 PHP Method

cbopcode44() private static method

Cbopcode #0x2C.
private static cbopcode44 ( Core $core )
$core Core
    private static function cbopcode44(Core $core)
    {
        $core->FCarry = ($core->registersHL & 0x100) == 0x100;
        $core->registersHL = ($core->registersHL >> 1 & 0xff00) + ($core->registersHL & 0x80ff);
        $core->FHalfCarry = $core->FSubtract = false;
        $core->FZero = $core->registersHL <= 0xff;
    }
Cbopcode