GameBoy\Opcode::opcode239 PHP Method

opcode239() public static method

RST 0x28
public static opcode239 ( Core $core )
$core Core
    public static function opcode239(Core $core)
    {
        $core->stackPointer = $core->unswtuw($core->stackPointer - 1);
        $core->memoryWrite($core->stackPointer, $core->programCounter >> 8);
        $core->stackPointer = $core->unswtuw($core->stackPointer - 1);
        $core->memoryWrite($core->stackPointer, $core->programCounter & 0xff);
        $core->programCounter = 0x28;
    }
Opcode