mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
18 lines
589 B
C#
18 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Compiler.Debug {
|
|
// Type of message sent to client debugger
|
|
public enum MsgType: byte { TracePoint = 1, Message = 2, BreakPoint = 3, Error = 4, Pointer = 5 }
|
|
// These commands come from the client debugger to OS
|
|
public enum Command : byte
|
|
{
|
|
TraceOff = 1, TraceOn = 2,
|
|
/// <summary>
|
|
/// Break command is also for continuing from breakstate.
|
|
/// </summary>
|
|
Break = 3, Step = 4, BreakOnAddress = 5
|
|
}
|
|
}
|