Start implementing smcCpuSuspend

This commit is contained in:
Michael Scire
2018-02-26 02:00:02 -08:00
parent 18d0a81bd5
commit bda9dcbe73
12 changed files with 241 additions and 20 deletions

10
exosphere/src/lp0.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef EXOSPHERE_LP0_H
#define EXOSPHERE_LP0_H
#include <stdint.h>
/* Exosphere Deep Sleep Entry implementation. */
uint32_t cpu_suspend(uint64_t power_state, uint64_t entrypoint, uint64_t argument);
#endif