1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-19 21:44:57 +01:00
hekate/hwinit/util.h

16 lines
206 B
C
Raw Normal View History

2018-03-07 01:11:46 +00:00
#ifndef _UTIL_H_
#define _UTIL_H_
#include "types.h"
typedef struct _cfg_op_t
{
u32 off;
u32 val;
} cfg_op_t;
void sleep(u32 ticks);
void exec_cfg(u32 *base, const cfg_op_t *ops, u32 num_ops);
#endif