Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSize.txt
Matthijs ter Woord 336020b418 .
2016-06-14 20:36:14 -04:00

14 lines
686 B
Text

public static void $MethodName$(uint destinationValue, bool isIndirect = false, int? displacement = null, RegisterSize size = RegisterSize.Int32)
{
Do<$InstructionClass$>(destinationValue, isIndirect, displacement, size);
}
public static void $MethodName$(Register register, bool isIndirect = false, int? displacement = null, RegisterSize? size = null)
{
Do<$InstructionClass$>(register, isIndirect, displacement, size);
}
public static void $MethodName$(string label, bool isIndirect = false, int? displacement = null, RegisterSize size = RegisterSize.Int32)
{
Do<$InstructionClass$>(label, isIndirect, displacement, size);
}