Cosmos/source/Indy.IL2CPU.IL.X86/Ldvirtftn.cs
mterwoord_cp 743e531621
2007-09-02 13:45:58 +00:00

14 lines
No EOL
386 B
C#

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