Cosmos/source/Indy.IL2CPU/Assembler/x86/JumpIfNotEquals.cs
mterwoord_cp d02a3251b0
2008-11-30 13:36:23 +00:00

14 lines
271 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
/// <summary>
/// Represents the JNE opcode
/// </summary>
[OpCode("jne")]
public class JumpIfNotEqual: JumpBase {
}
}