2018-12-20 16:29:04 +01:00
|
|
|
/*******************************************************************************/
|
|
|
|
/* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */
|
|
|
|
/* */
|
|
|
|
|
|
|
|
#include "libsys.h";
|
|
|
|
#include "libvideo.h";
|
|
|
|
#include "types.h";
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2018-12-22 00:19:34 +01:00
|
|
|
print("demarrage...\r\n");
|
2018-12-20 16:29:04 +01:00
|
|
|
while (true)
|
|
|
|
{
|
2018-12-20 17:16:51 +01:00
|
|
|
if (getticks()%100000==0)
|
2018-12-20 16:29:04 +01:00
|
|
|
print("[TEST]\r\n");
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|