Aesthetic.

master
Nabile Rahmani 2017-11-16 22:43:43 +01:00
parent 12f287ea12
commit f20f931b12
1 changed files with 8 additions and 1 deletions

View File

@ -185,7 +185,11 @@ namespace DotN64.Diagnostics
while (DebuggerStatus == Status.Debugging)
{
Console.Write("DotN64-dbg>");
Console.BackgroundColor = ConsoleColor.Yellow;
Console.ForegroundColor = ConsoleColor.Black;
Console.Write($"{nameof(DotN64)}-dbg▶");
Console.ResetColor();
var input = Console.ReadLine().Trim();
@ -234,7 +238,10 @@ namespace DotN64.Diagnostics
case Status.Running:
if (breakpoints.Contains(nintendo64.CPU.PC))
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("Hit a breakpoint; entering debug prompt.");
Console.ResetColor();
Debug();
}