Cosmos/source/Indy.IL2CPU.Assembler.X86/JumpIfCarry.cs
LostTheBlack_cp e554b4c2ad [+] It seems that blt_un now works fine on 64-bit operands.
[+] Added JumpIfCarry.
[*] Corrected spelling error: JumpNotCary -> JumpNotCarry.
2008-04-11 16:31:50 +00:00

20 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86
{
[OpCode(0xFFFFFFFF, "jc")]
public class JumpIfCarry : JumpBase
{
public JumpIfCarry(string aTarget)
: base(aTarget)
{
}
public override string ToString()
{
return "jc " + Address;
}
}
}