mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
14 lines
278 B
C#
14 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.IL2CPU.X86 {
|
|
public class AssemblerNasm : Cosmos.IL2CPU.Assembler {
|
|
|
|
protected override void InitILOps() {
|
|
InitILOps(typeof(ILOp));
|
|
}
|
|
|
|
}
|
|
}
|