mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
97ac46c82a
- Added CPrintBreakpoint Changes to console-based debugger: - Added new scp command and tidied up some other commands - Tidied up event logging - Sorted commands into common groups - Added ReadMe.txt help file
88 lines
1.7 KiB
C++
88 lines
1.7 KiB
C++
#ifdef SUPERMODEL_DEBUGGER
|
|
|
|
#include "CPUDebug.h"
|
|
#include "Breakpoint.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
namespace Debugger
|
|
{
|
|
CBreakpoint::CBreakpoint(CCPUDebug *bpCPU, int bpAddr, char bpSymbol, const char *bpType) :
|
|
CAddressRef(bpCPU, bpAddr), symbol(bpSymbol), type(bpType), active(true)
|
|
{
|
|
//
|
|
}
|
|
|
|
bool CBreakpoint::Check(UINT32 pc, UINT32 opcode)
|
|
{
|
|
return CheckAddr(pc) && active && CheckBreak(pc, opcode);
|
|
}
|
|
|
|
void CBreakpoint::Reset()
|
|
{
|
|
//
|
|
}
|
|
|
|
CSimpleBreakpoint::CSimpleBreakpoint(CCPUDebug *bpCPU, int bpAddr) : CBreakpoint(bpCPU, bpAddr, '*', "simple")
|
|
{
|
|
//
|
|
}
|
|
|
|
bool CSimpleBreakpoint::CheckBreak(UINT32 pc, UINT32 opcode)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool CSimpleBreakpoint::GetInfo(char *str)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
CCountBreakpoint::CCountBreakpoint(CCPUDebug *bpCPU, int bpAddr, int count) : CBreakpoint(bpCPU, bpAddr, '+', "count"),
|
|
m_count(count), m_counter(0)
|
|
{
|
|
//
|
|
}
|
|
|
|
bool CCountBreakpoint::CheckBreak(UINT32 pc, UINT32 opcode)
|
|
{
|
|
return ++m_counter == m_count;
|
|
}
|
|
|
|
void CCountBreakpoint::Reset()
|
|
{
|
|
m_counter = 0;
|
|
}
|
|
|
|
bool CCountBreakpoint::GetInfo(char *str)
|
|
{
|
|
sprintf(str, "%d / %d", m_counter, m_count);
|
|
return true;
|
|
}
|
|
|
|
CPrintBreakpoint::CPrintBreakpoint(CCPUDebug *bpCPU, int bpAddr) : CBreakpoint(bpCPU, bpAddr, 'P', "print")
|
|
{
|
|
//
|
|
}
|
|
|
|
bool CPrintBreakpoint::CheckBreak(UINT32 pc, UINT32 opcode)
|
|
{
|
|
char addrStr[50];
|
|
cpu->FormatAddress(addrStr, addr, true);
|
|
cpu->debugger->PrintEvent(cpu, "Breakpoint #%u hit at %s.\n", num, addrStr);
|
|
return false;
|
|
}
|
|
|
|
void CPrintBreakpoint::Reset()
|
|
{
|
|
//
|
|
}
|
|
|
|
bool CPrintBreakpoint::GetInfo(char *str)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
#endif // SUPERMODEL_DEBUGGER
|