PM: Embed boot2 logic in PM.

This commit is contained in:
Michael Scire 2018-07-27 02:23:53 -07:00
parent 6adcb483e5
commit 9f16062767
4 changed files with 30 additions and 259 deletions

View file

@ -0,0 +1,10 @@
#pragma once
enum class TitleId : u64 {
x = 0UL,
};
class EmbeddedBoot2 {
public:
static void Main();
};