GameBoy\Opcode::opcode173 PHP Méthode

opcode173() public static méthode

XOR L
public static opcode173 ( Core $core )
$core Core
    public static function opcode173(Core $core)
    {
        $core->registerA ^= $core->registersHL & 0xff;
        $core->FZero = $core->registerA == 0;
        $core->FSubtract = $core->FHalfCarry = $core->FCarry = false;
    }
Opcode