mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 04:40:14 +00:00
14 lines
No EOL
398 B
C#
14 lines
No EOL
398 B
C#
using System.IO;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86 {
|
|
[OpCode("nop")]
|
|
public class Noop: Instruction {
|
|
public static void InitializeEncodingData(Instruction.InstructionData aData)
|
|
{
|
|
aData.EncodingOptions.Add(new InstructionData.InstructionEncodingOption
|
|
{
|
|
OpCode = new byte[] { 0x90 }
|
|
});
|
|
}
|
|
}
|
|
} |