1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Fixed the target guards around the usage messages.

This commit is contained in:
Greg King 2019-12-30 19:53:39 -05:00
parent b56ba8f073
commit 00ab3c2d34

View File

@ -1,7 +1,7 @@
/* Calendar-clock test program
**
** 2018-Sep-25, chris@groessler.org
** 2019-Dec-27, Greg King
** 2019-Dec-30, Greg King
*/
#include <stdio.h>
@ -54,8 +54,10 @@ int main(int argc, char **argv)
}
if (argc != 2) {
#ifdef __CC65__
printf("Usage: run:rem [YY-MM-DD-HH-MM-SS]\n");
#if defined(__APPLE2__)
printf("USAGE: CALL2051 [:REM YY-MM-DD-HH-MM-SS]\n");
#elif defined(__ATMOS__) || defined(__CBM__)
printf("Usage: run [:rem YY-MM-DD-HH-MM-SS]\n");
#else
printf("Usage: %s [YY-MM-DD-HH-MM-SS]\n", argv[0]);
#endif