mirror of
https://github.com/CTCaer/hekate
synced 2024-11-05 11:26:35 +00:00
17 lines
259 B
C
17 lines
259 B
C
|
#include "util.h"
|
||
|
#include "t210.h"
|
||
|
|
||
|
void sleep(u32 ticks)
|
||
|
{
|
||
|
u32 start = TMR(0x10);
|
||
|
while (TMR(0x10) - start <= ticks)
|
||
|
;
|
||
|
}
|
||
|
|
||
|
void exec_cfg(u32 *base, const cfg_op_t *ops, u32 num_ops)
|
||
|
{
|
||
|
for(u32 i = 0; i < num_ops; i++)
|
||
|
base[ops[i].off] = ops[i].val;
|
||
|
}
|
||
|
|