Cosmos/source/Indy.IL2CPU/Assembler/x86/_Infra/InstructionWithSize.cs
mterwoord_cp 8b8be0c28d
2008-11-29 17:26:44 +00:00

19 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
public abstract class InstructionWithSize: Instruction, IInstructionWithSize {
protected InstructionWithSize() {
}
public byte Size {
get;
set;
}
public abstract string ToString();
}
}