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

Function CmdMOTD

source/Debugger/Debugger_Help.cpp:435–463  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

433
434//===========================================================================
435Update_t CmdMOTD( int nArgs ) // Message Of The Day
436{
437#if DEBUG_COLOR_CONSOLE
438 ConsolePrint( "`" );
439 ConsolePrint( "`A" );
440 ConsolePrint( "`2`A" );
441#endif
442
443 ConsolePrint( "`9`A`7 Apple `9][ ][+ //e `7Emulator for Windows (TM) `9`@" );
444
445 CmdVersion(0);
446 CmdSymbols(0);
447 ConsoleColorizePrintFormat( " '%sCtrl ~'%s console, '%s%s'%s (specific), '%s%s'%s (all)"
448 , CHC_KEY
449 , CHC_DEFAULT
450 , CHC_COMMAND
451 , g_aCommands[ CMD_HELP_SPECIFIC ].m_sName
452 , CHC_DEFAULT
453// , g_aCommands[ CMD_HELP_SPECIFIC ].pHelpSummary
454 , CHC_COMMAND
455 , g_aCommands[ CMD_HELP_LIST ].m_sName
456 , CHC_DEFAULT
457// , g_aCommands[ CMD_HELP_LIST ].pHelpSummary
458 );
459
460 ConsoleUpdate();
461
462 return UPDATE_ALL;
463}
464
465
466// Help on specific command

Callers 1

DebugInitializeFunction · 0.85

Calls 5

ConsolePrintFunction · 0.85
CmdVersionFunction · 0.85
CmdSymbolsFunction · 0.85
ConsoleUpdateFunction · 0.70

Tested by

no test coverage detected