mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
clearer install instructions
This commit is contained in:
parent
b9218d843b
commit
20c01389cc
18
INSTALL.md
18
INSTALL.md
|
@ -8,10 +8,11 @@ A base rom of Pokémon Red is required to assemble **pokered.gbc**.
|
||||||
|
|
||||||
# Linux
|
# Linux
|
||||||
|
|
||||||
sudo apt-get install make gcc bison git python python-setuptools
|
Linux dependencies. OSX users already have these after installing Xcode.
|
||||||
sudo easy_install pip
|
|
||||||
|
|
||||||
Install rgbds, a Game Boy ROM assembler.
|
sudo apt-get install make gcc bison git python python-setuptools
|
||||||
|
|
||||||
|
Install **rgbds**, a Game Boy assembler:
|
||||||
|
|
||||||
git clone git://github.com/bentley/rgbds.git
|
git clone git://github.com/bentley/rgbds.git
|
||||||
cd rgbds
|
cd rgbds
|
||||||
|
@ -20,7 +21,7 @@ Install rgbds, a Game Boy ROM assembler.
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
Set up the pokered repository.
|
Set up the pokered repository:
|
||||||
|
|
||||||
git clone git://github.com/iimarckus/pokered.git
|
git clone git://github.com/iimarckus/pokered.git
|
||||||
cd pokered
|
cd pokered
|
||||||
|
@ -28,15 +29,14 @@ Set up the pokered repository.
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
|
|
||||||
cd extras
|
sudo easy_install pip
|
||||||
pip install -r requirements.txt
|
pip install -r extras/requirements.txt
|
||||||
cd ..
|
|
||||||
|
|
||||||
Put your base rom in the pokered repository. Name it "baserom.gbc".
|
Put your base rom in the pokered repository. Name it "baserom.gbc".
|
||||||
|
|
||||||
make red
|
make red
|
||||||
|
|
||||||
This should take about 10-15 seconds. Subsequent compiles are faster.
|
This should take about 10-15 seconds. Subsequent builds are faster.
|
||||||
|
|
||||||
|
|
||||||
To build Pokémon Blue:
|
To build Pokémon Blue:
|
||||||
|
@ -46,7 +46,7 @@ To build Pokémon Blue:
|
||||||
|
|
||||||
# OSX
|
# OSX
|
||||||
|
|
||||||
Download and install Xcode. Then follow the Linux instructions.
|
Download and install **Xcode**. Then follow the Linux instructions.
|
||||||
|
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
|
|
Loading…
Reference in a new issue