mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 22:30:27 +00:00
16 lines
360 B
C#
16 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public class JumpIfGreater: Instruction {
|
|
public readonly string Address;
|
|
public JumpIfGreater(string aAddress) {
|
|
Address = aAddress;
|
|
}
|
|
public override string ToString() {
|
|
return "jb " + Address;
|
|
}
|
|
}
|
|
}
|