mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
/// <summary>
|
|
/// Represents the JB opcode
|
|
/// </summary>
|
|
public class JumpIfGreater: Instruction {
|
|
public readonly string Address;
|
|
public JumpIfGreater(string aAddress) {
|
|
Address = aAddress;
|
|
}
|
|
public override string ToString() {
|
|
return "jb " + Address;
|
|
}
|
|
}
|
|
}
|