Cosmos/source/Indy.IL2CPU.Assembler/Test.cs
mterwoord_cp c09c0f2459
2007-08-30 17:33:25 +00:00

20 lines
No EOL
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
public class Test: Instruction {
public readonly string Arg1;
public readonly string Arg2;
public Test(string aArg1, string aArg2) {
Arg1 = aArg1;
Arg2 = aArg2;
}
public override string ToString() {
return "test " + Arg1 + "," + Arg2;
}
}
}