Newer
Older
Atmosphere / fusee / fusee-loader / src / hwinit / fuse.c
@Michael Scire Michael Scire on 7 Apr 2018 175 bytes Sketch out more of fusee
#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));
}