From 9c53c0c0ccea7ed466cede9210a6d39477ee58d3 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 29 Apr 2019 06:09:47 -0700 Subject: [PATCH] boot: make our tasks explicit. --- stratosphere/boot/source/boot_main.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/stratosphere/boot/source/boot_main.cpp b/stratosphere/boot/source/boot_main.cpp index d2c9d340e..69b5d2a8f 100644 --- a/stratosphere/boot/source/boot_main.cpp +++ b/stratosphere/boot/source/boot_main.cpp @@ -100,5 +100,28 @@ int main(int argc, char **argv) /* TODO: Implement the boot sysmodule -- boot_old to be broadly rewritten. */ + /* TODO: Explicitly: */ + + /* TODO: ChangeGpioVoltageTo1_8v(); */ + + /* TODO: SetInitialGpioConfiguration(); */ + + /* TODO: CheckClock(); */ + + /* TODO: DetectBootReason(); */ + + /* TODO: ShowSplashScreen(); */ + + /* TODO: ConfigurePinmux(); */ + + /* TODO: SetInitialWakePinConfiguration(); */ + + /* TODO: SetInitialClockConfiguration(); */ + + /* TODO: CheckAndRepairBootImages(); */ + + /* TODO: NotifyBootFinished(); */ + + return 0; }