Flesh out the SE driver, some

This commit is contained in:
Michael Scire 2018-02-17 14:54:00 -08:00
parent 4b2d17a42a
commit 77ff68a69d
3 changed files with 289 additions and 9 deletions

9
exosphere/utils.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef EXOSPHERE_UTILS_H
#define EXOSPHERE_UTILS_H
void panic(void);
unsigned int read32le(const unsigned char *dword, unsigned int offset);
unsigned int read32be(const unsigned char *dword, unsigned int offset);
#endif