Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1265 → Rev 1266

/demos/trunk/loader/common/nload.c
57,6 → 57,13
:::"eax","ebx","ecx","edx");
end_oneshot_task();
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
 
return NULL;
114,6 → 121,13
}
 
end_periodic_task();
 
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
return NULL;
167,7 → 181,14
}
 
end_back_task();
#ifdef TASK_OUTPUT
#ifdef OS_SHARK
sprintf(tmp,"[--END--]");
printf_xy((get_current_exec_task() % 5) * 9 + 34,get_current_exec_task() / 5 + 5, GREEN, tmp);
#endif
#endif
return NULL;
}