Cosmos/source/Indy.IL2CPU.Assembler.X86/JumpIfBelowOrEqual.cs
LostTheBlack_cp 539933db9c [*] Fixed error with bge.
[+] Bge_Un works with 64-bit values.
2008-04-17 22:00:58 +00:00

23 lines
No EOL
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86
{
/// <summary>
/// Represents the JBE opcode
/// </summary>
[OpCode(0xFFFFFFFF, "jbe")]
public class JumpIfBelowOrEqual : JumpBase
{
public JumpIfBelowOrEqual(string aAddress)
: base(aAddress)
{
}
public override string ToString()
{
return "jbe " + Address;
}
}
}