* Fill clock_delay with something (needs rewriting).

This commit is contained in:
bg- 2007-01-24 16:28:51 +00:00
parent 2a879202a2
commit 6dea7b68d1
1 changed files with 5 additions and 1 deletions

View File

@ -102,7 +102,11 @@ clock_time(void)
void
clock_delay(unsigned int i)
{
// TODO
for (; i > 0; i--) { /* Needs fixing XXX */
unsigned j;
for (j = 50; j > 0; j--)
asm volatile("nop");
}
}
/*---------------------------------------------------------------------------*/