MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / FormatCharCopy

Function FormatCharCopy

source/Debugger/Debugger_Disassembler.cpp:51–56  ·  view source on GitHub ↗

===========================================================================

Source from the content-addressed store, hash-verified

49
50//===========================================================================
51static char* FormatCharCopy(char* pDst, const char* pEnd, uint16_t srcAddr, const int nLen)
52{
53 for (int i = 0; i < nLen && pDst < pEnd; i++)
54 *pDst++ = FormatCharTxtCtrl(ReadByteFromMemory(srcAddr++));
55 return pDst;
56}
57
58//===========================================================================
59static char FormatCharTxtAsci(const BYTE b, bool* pWasAsci_)

Callers 1

FormatNopcodeBytesFunction · 0.85

Calls 2

FormatCharTxtCtrlFunction · 0.85
ReadByteFromMemoryFunction · 0.85

Tested by

no test coverage detected