diff --git a/stella/src/debugger/DCmdQuit.cxx b/stella/src/debugger/DCmdQuit.cxx deleted file mode 100644 index 3811c483d..000000000 --- a/stella/src/debugger/DCmdQuit.cxx +++ /dev/null @@ -1,38 +0,0 @@ -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DCmdQuit.cxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#include "Debugger.hxx" -#include "DCmdQuit.hxx" - - -DCmdQuit::DCmdQuit(Debugger* d) { - debugger = d; -} - -string DCmdQuit::getName() { - return "Quit"; -} - -int DCmdQuit::getArgCount() { - return 0; -} - -string DCmdQuit::execute(int c, int *args) { -//FIXME parser->setDone(); - return "If you quit the debugger, I'll summon Satan all over your hard drive!"; -} diff --git a/stella/src/debugger/DCmdQuit.hxx b/stella/src/debugger/DCmdQuit.hxx deleted file mode 100644 index 8572d07e5..000000000 --- a/stella/src/debugger/DCmdQuit.hxx +++ /dev/null @@ -1,36 +0,0 @@ -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DCmdQuit.hxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#ifndef DCMDQUIT_HXX -#define DCMDQUIT_HXX - -class Debugger; - -#include "DebuggerCommand.hxx" - -class DCmdQuit: public DebuggerCommand -{ - public: - DCmdQuit(Debugger* d); - - string getName(); - int getArgCount(); - string execute(int c, int *args); -}; - -#endif diff --git a/stella/src/debugger/DCmdTrace.cxx b/stella/src/debugger/DCmdTrace.cxx deleted file mode 100644 index af2ed73b7..000000000 --- a/stella/src/debugger/DCmdTrace.cxx +++ /dev/null @@ -1,43 +0,0 @@ -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DCmdTrace.cxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#include "bspf.hxx" -#include "DCmdTrace.hxx" -#include "Debugger.hxx" -#include "Console.hxx" -#include "System.hxx" -#include "M6502.hxx" - - -DCmdTrace::DCmdTrace(Debugger* d) { - debugger = d; -} - -string DCmdTrace::getName() { - return "Trace"; -} - -int DCmdTrace::getArgCount() { - return 0; -} - -string DCmdTrace::execute(int c, int *args) { -// parser->getOSystem()->console().system().m6502().execute(1); - debugger->trace(); - return "OK"; -} diff --git a/stella/src/debugger/DCmdTrace.hxx b/stella/src/debugger/DCmdTrace.hxx deleted file mode 100644 index 5c98db70f..000000000 --- a/stella/src/debugger/DCmdTrace.hxx +++ /dev/null @@ -1,37 +0,0 @@ - -//============================================================================ -// -// SSSS tt lll lll -// SS SS tt ll ll -// SS tttttt eeee ll ll aaaa -// SSSS tt ee ee ll ll aa -// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" -// SS SS tt ee ll ll aa aa -// SSSS ttt eeeee llll llll aaaaa -// -// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team -// -// See the file "license" for information on usage and redistribution of -// this file, and for a DISCLAIMER OF ALL WARRANTIES. -// -// $Id: DCmdTrace.hxx,v 1.1 2005-06-12 18:18:00 stephena Exp $ -//============================================================================ - -#ifndef DCMDTRACE_HXX -#define DCMDTRACE_HXX - -#include "bspf.hxx" -#include "Debugger.hxx" -#include "DebuggerCommand.hxx" - -class DCmdTrace: public DebuggerCommand -{ - public: - DCmdTrace(Debugger* d); - - string getName(); - int getArgCount(); - string execute(int c, int *args); -}; - -#endif