CSPspEmu.Core.Cpu.Instruction.GetBranchAddress C# (CSharp) Method

GetBranchAddress() public method

public GetBranchAddress ( uint PC ) : uint
PC uint
return uint
        public uint GetBranchAddress(uint PC)
        {
            return (uint)(PC + 4 + IMM * 4);
        }