CSPspEmu.Core.Cpu.Emitter.CpuEmitter.JumpToFixedAddress C# (CSharp) Method

JumpToFixedAddress() private method

private JumpToFixedAddress ( uint Address ) : AstNodeStm
Address uint
return AstNodeStm
        private AstNodeStm JumpToFixedAddress(uint Address)
        {
            if (_DynarecConfig.EnableTailCalling)
            {
                return ast.Statements(
                    ast.Statement(ast.TailCall(ast.MethodCacheInfoCallStaticPC(CpuProcessor, Address))),
                    ast.Return()
                );
            }
            else
            {
                return ast.StatementsInline(
                    ast.AssignPC(Address),
                    ast.Return()
                );
            }
        }
CpuEmitter