Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/AssemblerBin.cs
2009-09-08 19:03:41 +00:00

22 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.X86 {
public class AssemblerBin : CosmosAssembler
{
protected override void InitILOps() {
InitILOps(typeof(ILOp));
}
protected override void MethodBegin(MethodInfo aMethod) {
}
protected override void MethodEnd(MethodInfo aMethod) {
}
public AssemblerBin() : base(0) { }
}
}