Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MipsEmulator"/> class with the specified
 /// <see cref="MipsMode"/> to use.
 /// </summary>
 /// <param name="mode">Mode to use.</param>
 public MipsEmulator(MipsMode mode) : base(UnicornArch.MIPS, (UnicornMode)mode)
 {
     _registers = new MipsRegisters(this);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MipsEmulator"/> class with the specified
 /// <see cref="MipsMode"/> to use.
 /// </summary>
 /// <param name="mode">Mode to use.</param>
 public MipsEmulator(MipsMode mode) : base(Bindings.Arch.MIPS, (Bindings.Mode)mode)
 {
     _registers = new MipsRegisters(this);
 }