46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
/*
|
|
* entry.c - Entry routine.
|
|
*
|
|
* Copyright (C) 2017, 2019
|
|
* Flying Stone Technology
|
|
* Author: NIIBE Yutaka <gniibe@fsij.org>
|
|
*
|
|
* This file is a part of Chopstx, a thread library for embedded.
|
|
*
|
|
* Chopstx is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Chopstx is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* As additional permission under GNU GPL version 3 section 7, you may
|
|
* distribute non-source form of the Program without the copy of the
|
|
* GNU GPL normally required by section 4, provided you inform the
|
|
* recipients of GNU GPL by a written offer.
|
|
*
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <chopstx.h>
|
|
|
|
int emulated_main (int, const char **);
|
|
void chx_init (struct chx_thread *);
|
|
void chx_systick_init (void);
|
|
extern struct chx_thread main_thread;
|
|
|
|
int
|
|
main (int argc, const char *argv[])
|
|
{
|
|
chx_init (&main_thread);
|
|
chx_systick_init ();
|
|
emulated_main (argc, argv);
|
|
}
|