mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
44 lines
No EOL
705 B
C#
44 lines
No EOL
705 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Assembler.x86 {
|
|
public interface IInstructionWithArgument {
|
|
Cosmos.Assembler.ElementReference ArgumentRef
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
RegistersEnum? ArgumentReg
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
uint? ArgumentValue
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
bool ArgumentIsIndirect
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
int ArgumentDisplacement
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
bool ArgumentEmpty
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |