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