mirror of
https://github.com/marian-m12l/game-and-watch-zelda3.git
synced 2025-12-17 07:16:05 +01:00
19 lines
237 B
C
19 lines
237 B
C
#include "porting.h"
|
|
#ifndef HEADLESS
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
|
|
uint32_t HAL_GetTick(void)
|
|
{
|
|
#ifndef HEADLESS
|
|
return SDL_GetTicks();
|
|
#else
|
|
return 0; // FIXME sys ticks ???
|
|
#endif
|
|
}
|
|
|
|
void wdog_refresh(void)
|
|
{
|
|
|
|
}
|