public PicoDebuggerController(DebuggablePlatform platform)
     : base(platform)
 {
     _notLoadedIState = new PicoNotLoadedState(this);
     // No picoComputer specific stuff in suspended state.
     _suspendedIState = new SuspendedState(this);
     _runningIState = new PicoRunningState(this);
 }
 public PicoDebuggerController(DebuggablePlatform platform)
     : base(platform)
 {
     _notLoadedIState = new PicoNotLoadedState(this);
     // No picoComputer specific stuff in suspended state.
     _suspendedIState = new SuspendedState(this);
     _runningIState   = new PicoRunningState(this);
 }