Cosmos/source/Indy.IL2CPU.Assembler.X86/Pop.cs
2007-09-01 09:42:43 +00:00

20 lines
No EOL
399 B
C#

using System;
using System.Linq;
namespace Indy.IL2CPU.Assembler.X86 {
public class Pop: Instruction {
public readonly string[] Arguments;
public Pop(params string[] aArguments) {
Arguments = aArguments;
}
public override string ToString() {
string xResult = "pop";
foreach (string A in Arguments) {
xResult += " " + A;
}
return xResult;
}
}
}