Cosmos/source/Indy.IL2CPU.Assembler.X86/JumpNotCary.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

15 lines
343 B
C#

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