blob: d7c3aebce9c4b222b6720f11f208841cf174b05d [file] [log] [blame]
adamdunkels0a08fda2004-07-04 18:33:07 +00001#include "mt.h"
2
3MTP(t, p, "Test thread");
4/*--------------------------------------------------------------------------*/
5static void
6test(void *data)
7{
8 while(1) {
9 asm("inc $d020");
10 }
11}
12/*--------------------------------------------------------------------------*/
13LOADER_INIT_FUNC(mtest_init, arg)
14{
15 arg_free(arg);
16 mtp_start(&t, test, NULL);
17}
18/*--------------------------------------------------------------------------*/