Cosmos/source/Indy.IL2CPU.IL.X86/Ldc_R4.cs
mterwoord_cp 969bd7fc6f
2007-09-01 15:34:29 +00:00

13 lines
No EOL
361 B
C#

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