mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
16 lines
462 B
C#
16 lines
462 B
C#
using System;
|
|
using CPUx86 = Indy.IL2CPU.Assembler.X86;
|
|
using Indy.IL2CPU.IL;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL {
|
|
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Conv_Ovf_I4)]
|
|
public class Conv_Ovf_I4 : ILOp {
|
|
public Conv_Ovf_I4(Cosmos.IL2CPU.Assembler aAsmblr)
|
|
: base(aAsmblr) {
|
|
}
|
|
|
|
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode) {
|
|
ThrowNowImplementedException("Conv_Ovf_I4 is not yet implemented");
|
|
}
|
|
}
|
|
}
|