14 lines
208 B
C
14 lines
208 B
C
#include "tempo.h"
|
|
|
|
void tempo(unsigned char nb, unsigned int tb) {
|
|
unsigned short i;
|
|
unsigned char j;
|
|
|
|
for (j = 0; j < nb; j++) {
|
|
for (i = 0; i < 65535; i++) {
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < tb; i++) {
|
|
}
|
|
} |