Ejemplo n.º 1
0
 /// <summary>
 /// Gets the compiled JSON associated with this <see cref="MicrocodeCommand"/>.
 /// </summary>
 /// <returns>A <see cref="JObject"/> with 'Name' and 'Signals' properties.</returns>
 public JObject GetJson()
 {
     return(new JObject(
                new JProperty("Name", Documentation.GetFullName()),
                new JProperty("Signals", string.Join("|", TrimCalls()))));
 }