GameBoy\Opcode::opcode60 PHP Method

opcode60() public static method

INC A
public static opcode60 ( Core $core )
$core Core
    public static function opcode60(Core $core)
    {
        $core->registerA = $core->registerA + 1 & 0xff;
        $core->FZero = $core->registerA == 0;
        $core->FHalfCarry = ($core->registerA & 0xf) == 0;
        $core->FSubtract = false;
    }
Opcode