Removed stale DCmd* files from src/debugger

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@489 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
urchlay 2005-06-13 17:10:43 +00:00
parent 89bf4d1da6
commit 382d2fd045
4 changed files with 0 additions and 154 deletions

View File

@ -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!";
}

View File

@ -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

View File

@ -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";
}

View File

@ -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