-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
599 changed files
with
45,949 additions
and
11,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,8 @@ | |
*.gb | ||
|
||
# rgbds extras | ||
*.map | ||
*.sym | ||
|
||
# generated | ||
*.tx | ||
|
||
# converted image data | ||
*.2bpp | ||
*.1bpp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,57 @@ | ||
# Linux | ||
|
||
Dependencies: | ||
|
||
sudo apt-get install make gcc bison git python python-setuptools | ||
sudo easy_install pip | ||
|
||
The assembler used is [**rgbds**](https://github.com/bentley/rgbds). | ||
sudo easy_install pypng | ||
|
||
git clone git://github.com/bentley/rgbds.git | ||
cd rgbds | ||
sudo mkdir -p /usr/local/man/man{1,7} | ||
sudo make install | ||
cd .. | ||
rm -rf rgbds | ||
|
||
Set up the repository. | ||
|
||
git clone git://github.com/iimarckus/pokered.git | ||
git clone --recursive git://github.com/iimarckus/pokered.git | ||
cd pokered | ||
git submodule init | ||
git submodule update | ||
sudo pip install -r extras/requirements.txt | ||
|
||
To build **pokered.gbc** and **pokeblue.gbc**: | ||
|
||
make | ||
|
||
This should take about 10 seconds. Subsequent builds are faster. | ||
|
||
To build them individually: | ||
|
||
make red | ||
make blue | ||
|
||
|
||
# OS X | ||
# Mac | ||
|
||
Download and install **Command Line Tools for Xcode**. | ||
Then open a terminal and follow the Linux instructions. | ||
In the shell, run: | ||
|
||
xcode-select --install | ||
sudo easy_install pypng | ||
|
||
# Windows | ||
git clone git://github.com/bentley/rgbds.git | ||
cd rgbds | ||
sudo make install | ||
cd .. | ||
|
||
It's recommended that you use a virtual machine running Linux or OS X. | ||
git clone --recursive git://github.com/iimarckus/pokered.git | ||
cd pokered | ||
|
||
If you insist on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit). | ||
make | ||
|
||
Dependencies are downloaded in the installer rather than the command line. | ||
Select the following packages: | ||
* make | ||
* git | ||
* gettext | ||
* python | ||
* python-setuptools | ||
|
||
To install rgbds, extract the contents of | ||
**http://iimarck.us/etc/rgbds.zip** | ||
and put them in `C:\cygwin\usr\local\bin`. | ||
# Windows | ||
|
||
Then set up the repository. In the **Cygwin terminal**: | ||
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html) (32-bit). | ||
|
||
git clone git://github.com/iimarckus/pokered.git | ||
cd pokered | ||
git submodule init | ||
git submodule update | ||
easy_install git://github.com/drj11/pypng.git@master#egg=pypng | ||
In the installer, select the following packages: `make` `git` `gettext` `python` `python-setuptools` | ||
|
||
To build: | ||
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/). | ||
Put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\usr\local\bin`. | ||
|
||
make | ||
In the **Cygwin terminal**: | ||
|
||
easy_install pypng | ||
git clone --recursive git://github.com/iimarckus/pokered.git | ||
cd pokered | ||
|
||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
_BLUE EQU 1 | ||
INCLUDE "charmap.asm" |
Oops, something went wrong.