mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
18 lines
412 B
C#
18 lines
412 B
C#
using System;
|
|
|
|
namespace Cosmos.IL2CPU.X86.IL
|
|
{
|
|
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Constrained)]
|
|
public class Constrained: ILOp
|
|
{
|
|
public Constrained(Cosmos.IL2CPU.Assembler aAsmblr):base(aAsmblr)
|
|
{
|
|
}
|
|
|
|
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode) {
|
|
// todo: Implement correct Constrained support
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|
|
}
|