Cosmos/source/Indy.IL2CPU.Assembler.X86/Compare.cs
mterwoord_cp b619721961
2007-09-02 06:31:20 +00:00

19 lines
No EOL
483 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode(0xFFFFFFFF, "cmp")]
public class Compare: Instruction {
public readonly string Address1;
public readonly string Address2;
public Compare(string aAddress1, string aAddress2) {
Address1 = aAddress1;
Address2 = aAddress2;
}
public override string ToString() {
return "cmp " + Address1 + "," + Address2;
}
}
}