shalxmva / modxo

Xbox LPC Port modchip using a Raspberry Pi Pico
BSD 2-Clause "Simplified" License
320 stars 16 forks source link

Hi All, now as part of Team Resurgent, this repo has been moved to:

https://github.com/Team-Resurgent/Modxo

This decision is to allow a better integration with other projects already in the scene. So now other interesting features are on the way for modxo!!!

Modchip + Axolotl = Modxo # Modxo (pronnounced as "Modsho") is a Xbox LPC Port firmware that converts the Raspberry Pi Pico into an Original Xbox Modchip that allows running a bios.

Future features

How to Install

1. Requirements

2. Build Circuit

Wiring diagram

3. Flashing firmware

Packing Bios

  1. Go to https://shalxmva.github.io/modxo/
  2. Drag and Drop your bios file
  3. UF2 File with bios image will be downloaded
Paccking Bios locally
  1. Copy bios file to bios.bin in this directory
  2. docker compose up bios2uf2
  3. output will be out/bios.uf2

Flashing steps

  1. Connect Raspberry Pi Pico with BOOTSEL button pressed to a PC and one new drive will appear.
  2. Copy Modxo.uf2 into the Raspberry Pi Pico Drive.
  3. Reconnect Raspberry Pi Pico with BOOTSEL button pressed, so the previous drive will showup again.
  4. Copy your bios UF2 file into the drive

Docker

Setup

  1. Build your base docker image with docker build -t modxo-builder .

Firmware Build

  1. docker compose run --rm builder
  2. output will be out/modxo.uf2

There are also some extra parameters that can be passed to the build script:

Example:

WS2812_LED=ON BUILD_TYPE=Release docker compose run --rm builder

Packing Bios locally

  1. Copy bios file to bios.bin in this directory or place any bios files in the bios directory
  2. docker compose run --rm bios2uf2
  3. output will be out/[bios].uf2

Development environment using VSCode and devcontainers

  1. Just open this project in VSCode and click on the "Reopen in Container" button when prompted
  2. Right-click on the CMakelists.txt file and select "Configure All Projects"
  3. Build the project by pressing F7