Initial commit.

This commit is contained in:
nwert
2018-03-07 14:11:46 +13:00
commit 6f6683e05b
26 changed files with 4159 additions and 0 deletions

12
hwinit/fuse.c Normal file
View File

@@ -0,0 +1,12 @@
#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));
}