diff options
| author | yenatch <yenatch@gmail.com> | 2013-12-08 16:02:25 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2013-12-08 16:02:25 -0500 |
| commit | 37f4f47aa8e6ee7fad2e27d3775009bafa24177f (patch) | |
| tree | 1e1a05ee49c2142d9ecb4f125292b1013268a8b5 /INSTALL.md | |
| parent | finish off wram labels and fix up mistaken label overloads (diff) | |
| download | pokeyellow-37f4f47aa8e6ee7fad2e27d3775009bafa24177f.tar.gz pokeyellow-37f4f47aa8e6ee7fad2e27d3775009bafa24177f.tar.xz pokeyellow-37f4f47aa8e6ee7fad2e27d3775009bafa24177f.zip | |
add INSTALL.md and README -> README.md
Diffstat (limited to 'INSTALL.md')
| -rw-r--r-- | INSTALL.md | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 00000000..b811a770 --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,55 @@ +# Getting Started + +A base rom of Pokémon Red is required to assemble **pokered.gbc**. + + Pokemon Red (UE) [S][!].gb + (MD5: 3d45c1ee9abd5738df46d2bdda8b57dc) + + +# Linux + + sudo apt-get install make gcc bison git python python-setuptools + sudo easy_install pip + +Install rgbds, a Game Boy ROM assembler. + + git clone git://github.com/bentley/rgbds.git + cd rgbds + make + sudo make install + + cd .. + +Set up the pokered repository. + + git clone git://github.com/iimarckus/pokered.git + cd pokered + + git submodule init + git submodule update + + cd extras + pip install -r requirements.txt + cd .. + +Put your base rom in the pokered repository. Name it "baserom.gbc". + + make red + +This should take about 10-15 seconds. Subsequent compiles are faster. + + +To build Pokémon Blue: + + make blue + + +# OSX + +Download and install Xcode. Then follow the Linux instructions. + + +# Windows + +Not yet. + |
