mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
13 lines
No EOL
372 B
C#
13 lines
No EOL
372 B
C#
using System;
|
|
using System.IO;
|
|
using Mono.Cecil.Cil;
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
[OpCode(Code.Add_Ovf_Un)]
|
|
public class Add_Ovf_Un: IL.Op {
|
|
public override void Assemble(Instruction aInstruction) {
|
|
throw new NotImplementedException("This file has been autogenerated and not been changed afterwards!");
|
|
}
|
|
}
|
|
} |