Cosmos/source/Indy.IL2CPU/Assembler/x86/_Infra/IInstructionWithSource.cs
2008-11-09 12:50:58 +00:00

33 lines
No EOL
592 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
public interface IInstructionWithSource {
ElementReference SourceRef {
get;
set;
}
Guid SourceReg {
get;
set;
}
uint? SourceValue {
get;
set;
}
bool SourceIsIndirect {
get;
set;
}
int SourceDisplacement {
get;
set;
}
}
}