cos2000v2/programs/test2.c

18 lines
411 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)
{
while (true)
{
if (getticks()%10==0)
print("[TEST]\r\n");
}
exit(1);
}