mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 21:30:19 +00:00
12 lines
No EOL
288 B
C#
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);
|
|
}
|
|
}
|
|
} |