Ejemplo n.º 1
0
        public EmuDebugger()
        {
            bool setupOk = this.SetupRemoting();
            Debug.Assert( setupOk == true );

            this.CallStacksEnabled = true;

            this.Breakpoints = new BreakpointManager( this );

            this.View = new DebugView( this );

            // Log is created here because it is special
            this.Log = new LogViewer( this );

            this.OnStateChanged();
        }
Ejemplo n.º 2
0
        public EmuDebugger()
        {
            bool setupOk = this.SetupRemoting();

            Debug.Assert(setupOk == true);

            this.CallStacksEnabled = true;

            this.Breakpoints = new BreakpointManager(this);

            this.View = new DebugView(this);

            // Log is created here because it is special
            this.Log = new LogViewer(this);

            this.OnStateChanged();
        }