mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
14 lines
No EOL
268 B
C#
14 lines
No EOL
268 B
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public abstract class Instruction {
|
|
protected Instruction() {
|
|
Assembler.Current.Add(this);
|
|
}
|
|
|
|
public virtual void EmitParams(BinaryWriter aWriter) {
|
|
}
|
|
}
|
|
} |