mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
24 lines
532 B
C#
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) { }
|
|
}
|
|
}
|