===========================================================================
| 6319 | |
| 6320 | //=========================================================================== |
| 6321 | Update_t CmdMemorySearch (int nArgs) |
| 6322 | { |
| 6323 | // S address,length # [,#] |
| 6324 | if (nArgs < 4) |
| 6325 | return HelpLastCommand(); |
| 6326 | |
| 6327 | return _CmdMemorySearch( nArgs, true ); |
| 6328 | |
| 6329 | return UPDATE_CONSOLE_DISPLAY; |
| 6330 | } |
| 6331 | |
| 6332 | |
| 6333 | // Search for ASCII text (no Hi-Bit set) |
nothing calls this directly
no test coverage detected