using XSharp.Compiler; namespace Cosmos.IL2CPU.X86.IL { [OpCode(ILOpCode.Code.Br)] public class Br : ILOp { public Br(Cosmos.Assembler.Assembler aAsmblr) : base(aAsmblr) { } public override void Execute(_MethodInfo aMethod, ILOpCode aOpCode) { XS.Jump(AppAssembler.TmpBranchLabel(aMethod, aOpCode)); //new CPU.Jump { DestinationLabel = AppAssembler.TmpBranchLabel(aMethod, aOpCode) }; } } }