Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/AssemblerBin.cs
kudzu_cp 100a788757
2009-09-08 19:52:38 +00:00

24 lines
532 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) {
base.MethodBegin(aMethod);
}
protected override void MethodEnd(MethodInfo aMethod) {
base.MethodEnd(aMethod);
}
public AssemblerBin() : base(0) { }
}
}