mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
18 lines
No EOL
412 B
C#
18 lines
No EOL
412 B
C#
using System;
|
|
using System.IO;
|
|
|
|
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
[OpCode(OpCodeEnum.Conv_I1)]
|
|
public class Conv_I1: Op {
|
|
public Conv_I1(ILReader aReader, MethodInformation aMethodInfo)
|
|
: base(aReader, aMethodInfo) {
|
|
}
|
|
public override void DoAssemble() {
|
|
throw new Exception("Not supported!");
|
|
// todo: implement correct truncating
|
|
}
|
|
}
|
|
} |