mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
34d8a859ab
Also resolves implicit definition warnings for wait by including the necessary header where applicable
8 lines
No EOL
192 B
C
8 lines
No EOL
192 B
C
#include "timers.h"
|
|
|
|
void wait(uint32_t microseconds) {
|
|
uint32_t old_time = TIMERUS_CNTR_1US_0;
|
|
while (TIMERUS_CNTR_1US_0 - old_time <= microseconds) {
|
|
/* Spin-lock. */
|
|
}
|
|
} |