mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
19 lines
No EOL
425 B
C#
19 lines
No EOL
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
/// <summary>
|
|
/// Represents the JLE opcode
|
|
/// </summary>
|
|
[OpCode(0xFFFFFFFF, "jle")]
|
|
public class JumpIfLessOrEqual: JumpBase {
|
|
public JumpIfLessOrEqual(string aAddress)
|
|
: base(aAddress) {
|
|
}
|
|
public override string ToString() {
|
|
return "jle " + Address;
|
|
}
|
|
}
|
|
} |