示例#1
0
 /// <summary>
 /// Renders this instruction to the provided <see cref="MachineInstructionRenderer"/>.
 /// </summary>
 /// <param name="renderer"></param>
 /// <param name="options"></param>
 public void Render(MachineInstructionRenderer renderer, MachineInstructionRendererOptions options)
 {
     renderer.BeginInstruction(Address);
     DoRender(renderer, options);
     renderer.EndInstruction();
 }