Cosmos/source/Indy.IL2CPU.IL.X86/Nop.cs
mterwoord_cp ce7ce6fe9a
2007-08-31 15:31:14 +00:00

12 lines
No EOL
250 B
C#

using System;
using System.IO;
using Mono.Cecil.Cil;
using CPU = Indy.IL2CPU.Assembler.X86;
namespace Indy.IL2CPU.IL.X86 {
public class Nop: IL.Nop {
public override void Assemble(Instruction aInstruction) {
new CPU.Noop();
}
}
}