7 #include "model-assert.h"
16 static void task(void * param) {
20 int user_main(int argc, char **argv)
24 thrd_create(&t, task, 0);
33 if (a!=1 && a!=2 && a!=4 && a!= EMPTY)
35 if (b!=1 && b!=2 && b!=4 && b!= EMPTY)
37 if (c!=1 && c!=2 && c!=4 && a!= EMPTY)
39 if (a!=EMPTY && b!=EMPTY && c!=EMPTY && (a+b+c)!=7)
42 printf("a=%d b=%d c=%d\n",a,b,c);
43 MODEL_ASSERT(correct);