Cosmos/source/Indy.IL2CPU.IL.X86/Add_Ovf.cs

18 lines
No EOL
388 B
C#

using System;
using System.IO;
using CPU = Indy.IL2CPU.Assembler.X86;
namespace Indy.IL2CPU.IL.X86 {
[OpCode(OpCodeEnum.Add_Ovf)]
public class Add_Ovf: Op {
public Add_Ovf(ILReader aReader, MethodInformation aMethodInfo)
: base(aReader, aMethodInfo) {
}
public override void DoAssemble() {
throw new NotImplementedException();
Add(Assembler);
}
}
}