PrintInstruction() public method

public PrintInstruction ( AssemblerLine line ) : void
line Mono.Debugger.AssemblerLine
return void
コード例 #1
0
        public override void TargetStopped(Interpreter interpreter, StackFrame frame,
                                           AssemblerLine current_insn)
        {
            if (frame != null)
            {
                if (!PrintSource(interpreter, frame))
                {
                    native = true;
                }

                interpreter.ShowDisplays(frame);
            }
            if (native && (current_insn != null))
            {
                interpreter.PrintInstruction(current_insn);
            }
        }
コード例 #2
0
ファイル: Style.cs プロジェクト: baulig/debugger
        public override void TargetStopped(Interpreter interpreter, StackFrame frame,
						    AssemblerLine current_insn)
        {
            if (frame != null) {
                if (!PrintSource (interpreter, frame))
                    native = true;

                interpreter.ShowDisplays (frame);
            }
            if (native && (current_insn != null))
                interpreter.PrintInstruction (current_insn);
        }