|
@@ -2,26 +2,33 @@
|
|
|
|
|
|
|
|
namespace Ryujinx.Core.OsHle
|
|
namespace Ryujinx.Core.OsHle
|
|
|
{
|
|
{
|
|
|
- public class Homebrew
|
|
|
|
|
|
|
+ static class Homebrew
|
|
|
{
|
|
{
|
|
|
//http://switchbrew.org/index.php?title=Homebrew_ABI
|
|
//http://switchbrew.org/index.php?title=Homebrew_ABI
|
|
|
- public Homebrew(AMemory Memory, long Position, long MainThreadHandle)
|
|
|
|
|
|
|
+ public static void WriteHbAbiData(AMemory Memory, long Position, int MainThreadHandle)
|
|
|
{
|
|
{
|
|
|
- //(NbrKeys * LoaderConfigEntrySize) + 2 buffers for Key2
|
|
|
|
|
- long Size = (4 * 0x18) + 0x1000;
|
|
|
|
|
- Memory.Manager.MapPhys(Position, Size, (int)MemoryType.Normal, AMemoryPerm.RW);
|
|
|
|
|
|
|
+ Memory.Manager.MapPhys(Position, AMemoryMgr.PageSize, (int)MemoryType.Normal, AMemoryPerm.RW);
|
|
|
|
|
|
|
|
//MainThreadHandle
|
|
//MainThreadHandle
|
|
|
WriteConfigEntry(Memory, ref Position, 1, 0, MainThreadHandle);
|
|
WriteConfigEntry(Memory, ref Position, 1, 0, MainThreadHandle);
|
|
|
|
|
+
|
|
|
//NextLoadPath
|
|
//NextLoadPath
|
|
|
- WriteConfigEntry(Memory, ref Position, 2, 0, Position + Size, Position + Size + 0x200);
|
|
|
|
|
|
|
+ WriteConfigEntry(Memory, ref Position, 2, 0, Position + 0x200, Position + 0x400);
|
|
|
|
|
+
|
|
|
//AppletType
|
|
//AppletType
|
|
|
WriteConfigEntry(Memory, ref Position, 7);
|
|
WriteConfigEntry(Memory, ref Position, 7);
|
|
|
|
|
+
|
|
|
//EndOfList
|
|
//EndOfList
|
|
|
WriteConfigEntry(Memory, ref Position, 0);
|
|
WriteConfigEntry(Memory, ref Position, 0);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- private void WriteConfigEntry(AMemory Memory, ref long Position, int Key, int Flags = 0, long Value0 = 0L, long Value1 = 0L)
|
|
|
|
|
|
|
+ private static void WriteConfigEntry(
|
|
|
|
|
+ AMemory Memory,
|
|
|
|
|
+ ref long Position,
|
|
|
|
|
+ int Key,
|
|
|
|
|
+ int Flags = 0,
|
|
|
|
|
+ long Value0 = 0,
|
|
|
|
|
+ long Value1 = 0)
|
|
|
{
|
|
{
|
|
|
Memory.WriteInt32(Position + 0x00, Key);
|
|
Memory.WriteInt32(Position + 0x00, Key);
|
|
|
Memory.WriteInt32(Position + 0x04, Flags);
|
|
Memory.WriteInt32(Position + 0x04, Flags);
|