mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
14 lines
302 B
C++
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
|