source: uKadecot/trunk/ssp/syssvc/banner.tf@ 101

Last change on this file since 101 was 101, checked in by coas-nagasima, 9 years ago

TOPPERS/uKadecotのソースコードを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/plain
File size: 1.2 KB
Line 
1$
2$ ƒoƒi[o—Í—p‚̃eƒ“ƒvƒŒ[ƒgƒtƒ@ƒCƒ‹
3$
4$FILE "kernel_cfg.c"$
5
6$ ƒJ[ƒlƒ‹–¼Ì
7$KERNEL_NAME = "\"TOPPERS/SSP Kernel \""$
8
9$ ƒo[ƒWƒ‡ƒ“‚ÌŽæ‚èo‚µ
10
11$MAJOR_VERSION = ((TKERNEL_PRVER >> 12) & 0x0f)$
12$MINOR_VERSION = ((TKERNEL_PRVER >> 4) & 0xff)$
13$PATCH_VERSION = ((TKERNEL_PRVER & 0x0f) & 0x0f)$
14
15$ ŠJ”­ŽÒ
16$AUTHOR = "\t\t\"Copyright (C) 2010 by Meika Sugimoto\\n\"\t\\\n"$
17$AUTHOR = CONCAT(AUTHOR , "\t\t\"Copyright (C) 2010 by Naoki Saito\\n\"\t\\\n")$
18$AUTHOR = CONCAT(AUTHOR , "\t\t\" Nagoya Municipal Industrial Research Institute, JAPAN\\n\"\t\\\n")$
19
20$BANNER = CONCAT("\"\\n\" " , KERNEL_NAME)$
21$BANNER = CONCAT(BANNER , FORMAT(" \"%d.%X.%d \" \t\\\n" , MAJOR_VERSION , MINOR_VERSION , PATCH_VERSION))$
22$BANNER = CONCAT(BANNER , "\t\t\" for \" TARGET_NAME ")$
23$BANNER = CONCAT(BANNER , "\" (\" __DATE__ \" , \" __TIME__ \")\\n\"\t\\\n")$
24$BANNER = CONCAT(BANNER , CONCAT(AUTHOR , "\t\tTARGET_COPYRIGHT \"\\n\""))$
25
26$NL$
27$NL$
28
29#ifndef TARGET_COPYRIGHT$NL$
30#define TARGET_COPYRIGHT$NL$
31#endif /* TARGET_COPYRIGHT */$NL$
32$NL$
33$NL$
34#ifndef TARGET_NAME$NL$
35#define TARGET_NAME$NL$
36#endif /* TARGET_NAME */$NL$
37$NL$
38$NL$
39const char banner[] = $BANNER$;$NL$
40const int32_t banner_size = sizeof(banner) / sizeof(banner[0]);
41$NL$
42$NL$
Note: See TracBrowser for help on using the repository browser.