Cosmos/source/Indy.IL2CPU.Assembler.X86/Instruction.cs
kudzu_cp 788b6cdb5d
2008-04-27 06:31:13 +00:00

15 lines
605 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
public abstract class Instruction : Indy.IL2CPU.Assembler.Instruction {
protected Instruction() {
// This is done this way so opcode and mnemonic can be easily specified in actual class
// Yet overriden later if necessary as some instructions have seperate mnemonics on some platforms for simple variations,
// and other platforms have one mnemonic and opcode changes based on params.
}
}
}