MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / isValidRegisterTrail

Function isValidRegisterTrail

pcsx2/DebugTools/MipsAssembler.cpp:195–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195bool isValidRegisterTrail(std::string_view source, size_t idx)
196{
197 return source.size() <= idx || source[idx] == ',' || source[idx] == '\n' || source[idx] == 0
198 || source[idx] == ')' || source[idx] == '(' || source[idx] == '-';
199}
200
201void SplitLine(const char* Line, char* Name, char* Arguments)
202{

Callers 1

MipsGetRegisterFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected