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

14 lines
310 B
C++

#ifdef SUPERMODEL_DEBUGGER
#include "Interrupt.h"
namespace Debugger
{
CInterrupt::CInterrupt(CCPUDebug *intCPU, const char *intId, UINT16 intCode, const char *intName) :
cpu(intCPU), id(intId), code(intCode), name(intName), trap(false), count(0)
{
//
}
}
#endif // SUPERMODEL_DEBUGGER