using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Indy.IL2CPU.Assembler.X86 { /// /// Represents the JG opcode /// [OpCode("jb")] [Obsolete("This instruction's generated asm code differs from it's name. Use JumpOnGreater instead.")] public class JumpIfGreater: JumpBase { } }