mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
17 lines
No EOL
413 B
C#
17 lines
No EOL
413 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("jg")]
|
|
public class JumpOnGreater : JumpBase
|
|
{
|
|
}
|
|
} |