Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/_Infra/IInstructionWithArgument.cs
Trivalik_cp 7f84d28d69 add DOTNETCOMPABILE define condition,
change StackContents to uint,
able to use now mnemoric with 3 operands,
shl IL near 64 bit (unknown error),
add asm line to nasm error
2011-02-22 17:03:42 +00:00

44 lines
No EOL
697 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.Assembler.X86 {
public interface IInstructionWithArgument {
ElementReference ArgumentRef
{
get;
set;
}
RegistersEnum? ArgumentReg
{
get;
set;
}
uint? ArgumentValue
{
get;
set;
}
bool ArgumentIsIndirect
{
get;
set;
}
int ArgumentDisplacement
{
get;
set;
}
bool ArgumentEmpty
{
get;
set;
}
}
}