mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-10-22 08:25:47 +02:00
13 lines
175 B
C
13 lines
175 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));
|
|
}
|