Ejemplo n.º 1
0
 public Div(DecodedTypes.IMyMultiDecoded input, OpcodeSettings settings = OpcodeSettings.NONE)
     : base((settings | OpcodeSettings.SIGNED) == settings ? "IDIV" : "DIV", input, settings)
 {
 }
Ejemplo n.º 2
0
 public Xchg(DecodedTypes.IMyMultiDecoded input, OpcodeSettings settings = OpcodeSettings.NONE) : base("XCHG", input, settings)
 {
     // Store the input such that the source can be set later.
     Input = input;
 }
Ejemplo n.º 3
0
 public Mul(DecodedTypes.IMyMultiDecoded input, OpcodeSettings settings = OpcodeSettings.NONE) : base((settings | OpcodeSettings.SIGNED) == settings ? "IMUL" : "MUL", input, settings)
 {
 }