d2f53626ae
Splash screens now last 3 seconds after they have been loaded. The delay after pressing START in the configuration menu is now 2s long.
16 lines
210 B
C
16 lines
210 B
C
/*
|
|
* utils.h
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
u32 waitInput(void);
|
|
void mcuReboot(void);
|
|
|
|
#define TICKS_PER_SEC 67027964ULL
|
|
|
|
void startChrono(u64 initialTicks);
|
|
u64 chrono(void);
|
|
void stopChrono(void); |