Debugger: surround register contents with brackets.

master
Nabile Rahmani 2018-06-10 17:33:54 +02:00
parent 6550d7d327
commit 575f68c549
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@
private static string FormatCP0Register(int index, VR4300 cpu) => RegisterPrefix + (VR4300.SystemControlUnit.RegisterIndex)index + (cpu != null ? FormatRegisterContents(cpu.CP0.Registers[index]) : string.Empty);
private static string FormatRegisterContents(ulong value) => $"(0x{value:X})";
private static string FormatRegisterContents(ulong value) => $"[0x{value:X}]";
/// <summary>
/// Immediate type.