Create starting point for GNURX RX62N HEW project.

This commit is contained in:
Richard Barry 2010-08-25 16:06:53 +00:00
parent 8c5b77635e
commit 1ee62d835d
17 changed files with 2657 additions and 0 deletions

View file

@ -0,0 +1,43 @@
/***********************************************************************/
/* */
/* FILE :RTOSDemo.c */
/* DATE :Wed, Aug 25, 2010 */
/* DESCRIPTION :Main Program */
/* CPU TYPE :Other */
/* */
/* This file is generated by KPIT GNU Project Generator. */
/* */
/***********************************************************************/
#include "iodefine.h"
#ifdef CPPAPP
//Initialize global constructors
extern "C" void __main()
{
static int initialized;
if (! initialized)
{
typedef void (*pfunc) ();
extern pfunc __ctors[];
extern pfunc __ctors_end[];
pfunc *p;
initialized = 1;
for (p = __ctors_end; p > __ctors; )
(*--p) ();
}
}
#endif
int main(void)
{
// TODO: add application code here
while (1) {
}
return 0;
}