mirror of
https://github.com/SeekyCt/spm-decomp.git
synced 2024-12-02 18:36:20 +00:00
7 lines
157 B
C
7 lines
157 B
C
#ifndef OS_H
|
|
#define OS_H
|
|
|
|
#define OSClockSpeed ((*(int *) 0x800000F8) / 4)
|
|
#define OSTicksToMilliseconds( ticks ) ((ticks) / (OSClockSpeed / 1000))
|
|
|
|
#endif |