mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-05 11:27:09 +00:00
13 lines
187 B
C
13 lines
187 B
C
|
#include "fuse.h"
|
||
|
#include "t210.h"
|
||
|
|
||
|
void fuse_disable_program()
|
||
|
{
|
||
|
FUSE(FUSE_DISABLEREGPROGRAM) = 1;
|
||
|
}
|
||
|
|
||
|
u32 fuse_read_odm(u32 idx)
|
||
|
{
|
||
|
return FUSE(FUSE_RESERVED_ODMX(idx));
|
||
|
}
|