diff --git a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs
index 7d6c53738c..50531248ba 100644
--- a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs
+++ b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs
@@ -200,24 +200,7 @@ namespace BizHawk.Client.Common
/// Get a string representation of difference
/// between current value and the previous one
///
- public override string Diff
- {
- get
- {
- string diff = "";
- int diffVal = _value - _previous;
- if (diffVal > 0)
- {
- diff = "+";
- }
- else if (diffVal < 0)
- {
- diff = "-";
- }
-
- return $"{diff}{((byte)Math.Abs(diffVal))}";
- }
- }
+ public override string Diff => $"{_value - (short)_previous:+#;-#;0}";
///
/// Get the maximum possible value
diff --git a/BizHawk.Client.Common/tools/Watch/DWordWatch.cs b/BizHawk.Client.Common/tools/Watch/DWordWatch.cs
index 79a9ef03aa..360966dac0 100644
--- a/BizHawk.Client.Common/tools/Watch/DWordWatch.cs
+++ b/BizHawk.Client.Common/tools/Watch/DWordWatch.cs
@@ -231,7 +231,7 @@ namespace BizHawk.Client.Common
/// Get a string representation of difference
/// between current value and the previous one
///
- public override string Diff => (_previous - _value).ToString();
+ public override string Diff => $"{_value - (long)_previous:+#;-#;0}";
///
/// Get the maximum possible value
diff --git a/BizHawk.Client.Common/tools/Watch/WordWatch.cs b/BizHawk.Client.Common/tools/Watch/WordWatch.cs
index 968e81e0f8..be6d461bf4 100644
--- a/BizHawk.Client.Common/tools/Watch/WordWatch.cs
+++ b/BizHawk.Client.Common/tools/Watch/WordWatch.cs
@@ -214,24 +214,7 @@ namespace BizHawk.Client.Common
/// Get a string representation of difference
/// between current value and the previous one
///
- public override string Diff
- {
- get
- {
- string diff = "";
- int diffVal = _value - _previous;
- if (diffVal > 0)
- {
- diff = "+";
- }
- else if (diffVal < 0)
- {
- diff = "-";
- }
-
- return $"{diff}{((ushort)Math.Abs(diffVal))}";
- }
- }
+ public override string Diff => $"{_value - (int)_previous:+#;-#;0}";
///
/// Get the maximum possible value
diff --git a/BizHawk.Emulation.Cores/CPUs/Z80A/NewDisassembler.cs b/BizHawk.Emulation.Cores/CPUs/Z80A/NewDisassembler.cs
index 8bc3938c7d..aef7dc8ec5 100644
--- a/BizHawk.Emulation.Cores/CPUs/Z80A/NewDisassembler.cs
+++ b/BizHawk.Emulation.Cores/CPUs/Z80A/NewDisassembler.cs
@@ -12,28 +12,15 @@ namespace BizHawk.Emulation.Cores.Components.Z80A
//d immediately succeeds the opcode
//n immediate succeeds the opcode and the displacement (if present)
//nn immediately succeeds the opcode and the displacement (if present)
- if (format.IndexOf("nn") != -1)
- {
- byte B = read(addr++);
- byte C = read(addr++);
- format = format.Replace("nn", string.Format("{0:X4}h", B + C * 256));
- }
- if (format.IndexOf("n") != -1)
- {
- byte B = read(addr++);
- format = format.Replace("n", string.Format("{0:X2}h", B));
- }
+ if (format.IndexOf("nn") != -1) format = format.Replace("nn", $"{read(addr++) + (read(addr++) << 8):X4}h"); // LSB is read first
+ if (format.IndexOf("n") != -1) format = format.Replace("n", $"{read(addr++):X2}h");
if (format.IndexOf("+d") != -1) format = format.Replace("+d", "d");
-
if (format.IndexOf("d") != -1)
{
- byte B = read(addr++);
- bool neg = ((B & 0x80) != 0);
- char sign = neg ? '-' : '+';
- int val = neg ? 256 - B : B;
- format = format.Replace("d", string.Format("{0}{1:X2}h", sign, val));
+ var b = unchecked ((sbyte) read(addr++));
+ format = format.Replace("d", $"{(b < 0 ? '-' : '+')}{(b < 0 ? -b : b):X2}h");
}
return format;