Cosmos/source/Indy.IL2CPU.Assembler/Instruction.cs

12 lines
No EOL
288 B
C#

using System;
using System.IO;
using System.Linq;
namespace Indy.IL2CPU.Assembler {
public abstract class Instruction {
// For threading, later on we can use TLS or add a paramterized constructor
protected Instruction() {
Assembler.Current.Add(this);
}
}
}