Go to file
Maschell 07cba0e084 Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:11:10 +02:00
src First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
.gitignore First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
.travis.yml Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:11:10 +02:00
Dockerfile Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:11:10 +02:00
LICENSE First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
Makefile First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
README.md Add a Dockerfile, simplify the travis script using docker 2018-09-23 14:11:10 +02:00
diibugger-cli.py First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
disassemble.py First commit of the WUPS version. 2018-06-30 22:03:44 +02:00
makefile.mk First commit of the WUPS version. 2018-06-30 22:03:44 +02:00

README.md

DiiBugger (WUPS version) Build Status

Allows you to connect to your console and use simple debug operations. Checkout the CLI client by jam1garner for usage.

Once the plugin was loaded, start the diibugger-cli.py with python3, and type in connect [WIIU IP] to connect to the console. When the running applications changes you need to reconnect.

Wii U Plugin System

This is a plugin for the Wii U Plugin System (WUPS). To be able to use this plugin you have to place the resulting .mod file into the following folder:

sd:/wiiu/plugins

When the file is placed on the SDCard you can load it with plugin loader.

Building

For building you need:

Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once
docker build . -t diibugger-builder

# make 
docker run -it --rm -v ${PWD}:/project diibugger-builder make

# make clean
docker run -it --rm -v ${PWD}:/project diibugger-builder make clean

Credits

  • Refactoring and porting to a WUPS/wut by Maschell
  • Initially created by Kinnay
  • CLI client by jam1garner