Cosmos/source/Indy.IL2CPU.IL.X86/Conv_I.cs
2007-09-01 15:21:22 +00:00

13 lines
No EOL
364 B
C#

using System;
using System.IO;
using Mono.Cecil.Cil;
using CPU = Indy.IL2CPU.Assembler.X86;
namespace Indy.IL2CPU.IL.X86 {
[OpCode(Code.Conv_I)]
public class Conv_I: IL.Op {
public override void Assemble(Instruction aInstruction) {
throw new NotImplementedException("This file has been autogenerated and not been changed afterwards!");
}
}
}