mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL
|
|
{
|
|
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Sub_Ovf_Un)]
|
|
public class Sub_Ovf_Un: ILOp
|
|
{
|
|
public Sub_Ovf_Un(Cosmos.IL2CPU.Assembler aAsmblr):base(aAsmblr)
|
|
{
|
|
}
|
|
|
|
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
// using System;
|
|
// using System.IO;
|
|
//
|
|
//
|
|
// using CPU = Cosmos.IL2CPU.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);
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
}
|
|
}
|