Cosmos/source/Indy.IL2CPU.IL.X86/Pop.cs
mterwoord_cp 50f6a9a812
2007-08-30 14:13:48 +00:00

14 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Mono.Cecil.Cil;
namespace Indy.IL2CPU.IL.X86 {
class Pop : Indy.IL2CPU.IL.Pop {
public override void Assemble(Instruction aInstruction) {
Console.WriteLine("Pop");
}
}
}