Go to file
2020-06-07 13:58:55 +02:00
relocator Modules do now have a flag if they should be run before their entrypoint. 2020-06-07 13:58:55 +02:00
source Modules do now have a flag if they should be run before their entrypoint. 2020-06-07 13:58:55 +02:00
.gitignore Add support for WUMS, support for handling and resolving exports 2020-05-17 21:14:27 +02:00
Makefile Add support for WUMS, support for handling and resolving exports 2020-05-17 21:14:27 +02:00
README.md Add support for WUMS, support for handling and resolving exports 2020-05-17 21:14:27 +02:00

Setup payload

This is a payload that should be run with CustomRPXLoader.

Usage

Put the payload.rpx in the sd:/wiiu/ folder of your sd card and use the CustomRPXLoader to run this setup payload.

Put modules (in form of .wms files) that should be used a main()-hook into sd:/wiiu/modules/ and one time modules into sd:/wiiu/modules/setup.

  • Make sure not to call exit in the modules (by using the WiiUModuleSystem)
  • The one time setups will be run in the order of their ordered filenames.

The area between 0x00800000 and whereever this setup is loaded, will be used.

Building

Make you to have wut and WiiUModuleSystem installed and use the following command for build:

make install

Credits

  • maschell
  • Copy paste stuff from dimok
  • Copy pasted the solution for using wut header in .elf files from RetroArch
  • Copy pasted resolving the ElfRelocations from decaf