Cosmos/source/Indy.IL2CPU.IL.X86/Noop.cs
2007-08-29 20:01:33 +00:00

14 lines
338 B
C#

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