Ejemplo n.º 1
0
 public instFormat(uint mask = default, uint value = default, Op op = default, instArgs args = default, Func <uint, bool> canDecode = default)
 {
     this.mask      = mask;
     this.value     = value;
     this.op        = op;
     this.args      = args;
     this.canDecode = canDecode;
 }
Ejemplo n.º 2
0
 public instFormat(uint mask = default, uint value = default, sbyte priority = default, Op op = default, ulong opBits = default, instArgs args = default)
 {
     this.mask     = mask;
     this.value    = value;
     this.priority = priority;
     this.op       = op;
     this.opBits   = opBits;
     this.args     = args;
 }