Cosmos/source/Indy.IL2CPU/Assembler/x86/JumpOnGreater.cs
mterwoord_cp 824acc19fc
2008-11-07 18:39:24 +00:00

17 lines
No EOL
422 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86
{
/// <summary>
/// CMP DEST, SOURCE
/// if (DEST > SOURCE) jump (signed)
/// </summary>
#warning this instruction should be renamed to JumpIfGreater after corresponding obsolete instruction is deleted
[OpCode(0xFFFFFFFF, "jg")]
public class JumpOnGreater : JumpBase
{
}
}