mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
20 lines
411 B
C#
20 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
public class Xor: Instruction {
|
|
public readonly string Arg1;
|
|
public readonly string Arg2;
|
|
|
|
public Xor(string aArg1, string aArg2) {
|
|
Arg1 = aArg1;
|
|
Arg2 = aArg2;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "xor " + Arg1 + "," + Arg2;
|
|
}
|
|
}
|
|
}
|