mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 05:40:29 +00:00
14 lines
338 B
C#
14 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
using CPU = Indy.IL2CPU.Assembler.X86;
|
|
|
|
namespace Indy.IL2CPU.IL.X86 {
|
|
public class Noop: IL.Noop {
|
|
public override void Assemble(Instruction aInstruction) {
|
|
new CPU.Noop();
|
|
}
|
|
}
|
|
}
|