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

Function FormatCharTxtHigh

source/Debugger/Debugger_Disassembler.cpp:95–110  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

93
94//===========================================================================
95char FormatCharTxtHigh(const BYTE b, bool* pWasHi_)
96{
97 if (pWasHi_)
98 *pWasHi_ = false;
99
100 char c = b;
101 if (b > 0x7F)
102 {
103 if (pWasHi_)
104 {
105 *pWasHi_ = true;
106 }
107 c = (b & 0x7F);
108 }
109 return c;
110}
111
112
113//===========================================================================

Callers 3

ColorizeSpecialCharFunction · 0.85
FormatChar4FontFunction · 0.85
GetDisassemblyLineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected