Supermodel/Src/Debugger/Exception.cpp
2011-06-27 22:55:03 +00:00

14 lines
302 B
C++

#ifdef SUPERMODEL_DEBUGGER
#include "Exception.h"
namespace Debugger
{
CException::CException(CCPUDebug *exCPU, const char *exId, UINT16 exCode, const char *exName) :
cpu(exCPU), id(exId), code(exCode), name(exName), trap(false), count(0)
{
//
}
}
#endif // SUPERMODEL_DEBUGGER