mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
14 lines
310 B
C++
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
|