mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 14:20:38 +00:00
19 lines
487 B
C#
19 lines
487 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";
|
|
}
|
|
|
|
public override void Assemble(BinaryWriter aWriter) {
|
|
// aWriter.Write( params. bla bla bla if this was not a nooop)
|
|
}
|
|
}
|
|
}
|