mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
7 lines
No EOL
127 B
C#
7 lines
No EOL
127 B
C#
using System.IO;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86 {
|
|
[OpCode("nop")]
|
|
public class Noop: Instruction {
|
|
}
|
|
} |