mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 21:30:19 +00:00
17 lines
No EOL
469 B
C#
17 lines
No EOL
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
public class ConditionalJump: JumpBase, IInstructionWithCondition {
|
|
public ConditionalTestEnum Condition {
|
|
get;
|
|
set;
|
|
}
|
|
public override string ToString() {
|
|
mMnemonic = "j" + Condition.GetMnemonic() + " near";
|
|
return base.ToString();
|
|
}
|
|
}
|
|
} |