예제 #1
0
sint32
main(void)
{
	/* プログラムが動作するためにECU上で最低限必要となる初期化一式を完了させる */

	/* EcuMの初期化 */
	EcuM_Init();

	while (1) {
	}
}
예제 #2
0
파일: main.c 프로젝트: Balthazar013/Test_1
/* freestanding C: this really is the signature of main() */
int main (void)
{
  EcuM_Init();    /* start OS never returns */
  return 0;
}