in-progress decompilation of Gauntlet Legends decompression code on the N64

A in-progress decompilation of Gauntlet-Legends (N64) decompression code. This project currently supports the US release. Building (Linux) The build process has the following package requirements: git build-essential binutils-mips-linux-gnu python3 Under a Debian based distribution, you can install these with the following commands: sudo apt update sudo apt install git build-essential binutils-mips-linux-gnu python3 Clone the repository Clone https://github.com/Drahsid/gauntlet-legends.git in whatever directory you wish. Make sure to initialize the submodules! git clone https://github.com/Drahsid/gauntlet-legends.git –recursive cd gauntlet-legends git submodule init Install Python3 requirements […]

Read more

A progress bar for Python 2 and Python 3 – pip install progressbar2

Travis status: Coverage: Install The package can be installed through pip (this is the recommended method): pip install progressbar2 Or if pip is not available, easy_install should work as well: easy_install progressbar2 Or download the latest release from Pypi (https://pypi.python.org/pypi/progressbar2) or Github. Note that the releases on Pypi are signed with my GPG key (https://pgp.mit.edu/pks/lookup?op=vindex&search=0xE81444E9CE1F695D) and can be checked using GPG: gpg –verify progressbar2-.tar.gz.asc progressbar2-.tar.gz Introduction A text progress bar is typically used to display the progress of a long […]

Read more