cos2000v2/programs/test2.c

19 lines
440 B
C
Raw Normal View History

/*******************************************************************************/
/* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */
/* */
#include "libsys.h";
#include "libvideo.h";
#include "types.h";
void main(void)
{
print("demarrage...\r\n");
while (true)
{
2018-12-26 00:54:19 +01:00
if (getticks()%100==0)
print("[TEST]\r\n");
}
exit(1);
}