Cosmos/source/Indy.IL2CPU.Assembler.X86/Noop.cs

20 lines
607 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Assembler;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode(0x90)]
public class Noop : Instruction {
public override string ToString() {
return "Noop";
}
// In fact this can be removed. EmitParams override is optional,its just here for example for the time being
public override void EmitParams(BinaryWriter aWriter) {
// aWriter.Write( params. bla bla bla if this was not a nooop)
}
}
}