Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/IL/Sub_Ovf_Un.cs
mterwoord_cp fe74f892e3
2009-07-24 17:47:24 +00:00

43 lines
1.3 KiB
C#

using System;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Sub_Ovf_Un)]
public class Sub_Ovf_Un: ILOpX86
{
public Sub_Ovf_Un(ILOpCode aOpCode):base(aOpCode)
{
}
#region Old code
// using System;
// using System.IO;
//
//
// using CPU = Indy.IL2CPU.Assembler.X86;
//
// namespace Indy.IL2CPU.IL.X86 {
// [OpCode(OpCodeEnum.Sub_Ovf_Un)]
// public class Sub_Ovf_Un: Op {
// private string mCurrentLabel;
// private string mNextLabel;
// private uint mCurrentOffset;
// private MethodInformation mCurrentMethodInfo;
// public Sub_Ovf_Un(ILReader aReader, MethodInformation aMethodInfo)
// : base(aReader, aMethodInfo)
// {
// mCurrentLabel = GetInstructionLabel(aReader);
// mCurrentOffset = aReader.Position;
// mNextLabel = GetInstructionLabel(aReader.NextPosition);
// mCurrentMethodInfo = aMethodInfo;
// }
//
// public override void DoAssemble() {
// EmitNotImplementedException(Assembler, GetServiceProvider(), "Sub_Ovf_Un instruction not yet implemented",
// mCurrentLabel, mCurrentMethodInfo, mCurrentOffset, mNextLabel);
// }
// }
// }
#endregion Old code
}
}