From d4ca41c0e2ce6c6d5dd13314cc84c6b01728dde6 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Sat, 6 Apr 2019 22:26:57 +0100 Subject: Update README.md --- README.md | 43 ++++++++++++++++++++----------------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index e1ba89794..435151d1f 100644 --- a/README.md +++ b/README.md @@ -4,31 +4,28 @@ This is a disassembly of Pokémon FireRed and LeafGreen. It builds the following ROM: -* pokefirered.gba `sha1: 41cb23d8dccc8ebd7c649cd8fbb58eeace6e2fdc` +* **pokefirered.gba** `sha1: 41cb23d8dccc8ebd7c649cd8fbb58eeace6e2fdc` -To set up the repository, see [**INSTALL.md**](INSTALL.md). +To set up the repository, see [INSTALL.md](INSTALL.md). ## See also -* Disassembly of [**Pokémon Red and Blue**][pokered] -* Disassembly of [**Pokémon Yellow**][pokeyellow] -* Disassembly of [**Pokémon Gold and Silver**][pokegold] -* Disassembly of [**Pokémon Crystal**][pokecrystal] -* Disassembly of [**Pokémon Pinball**][pokepinball] -* Disassembly of [**Pokémon TCG**][poketcg] -* Disassembly of [**Pokémon Ruby and Sapphire**][pokeruby] -* Disassembly of [**Pokémon Emerald**][pokeemerald] -* Discord: [**pret**][Discord] -* irc: **irc.freenode.net** [**#pret**][irc] - -[pokered]: https://github.com/pret/pokered -[pokeyellow]: https://github.com/pret/pokeyellow -[pokegold]: https://github.com/pret/pokegold -[pokecrystal]: https://github.com/pret/pokecrystal -[pokepinball]: https://github.com/pret/pokepinball -[poketcg]: https://github.com/pret/poketcg -[pokeruby]: https://github.com/pret/pokeruby -[pokeemerald]: https://github.com/pret/pokeemerald -[Discord]: https://discord.gg/6EuWgX9 -[irc]: https://kiwiirc.com/client/irc.freenode.net/?#pret +Other disassembly and/or decompilation projects: +* [**Pokémon Red and Blue**](https://github.com/pret/pokered) +* [**Pokémon Gold and Silver (Space World '97 demo)**](https://github.com/pret/pokegold-spaceworld) +* [**Pokémon Yellow**](https://github.com/pret/pokeyellow) +* [**Pokémon TCG**](https://github.com/pret/poketcg) +* [**Pokémon Pinball**](https://github.com/pret/pokepinball) +* [**Pokémon Stadium**](https://github.com/pret/pokestadium) +* [**Pokémon Gold and Silver**](https://github.com/pret/pokegold) +* [**Pokémon Crystal**](https://github.com/pret/pokecrystal) +* [**Pokémon Ruby and Sapphire**](https://github.com/pret/pokeruby) +* [**Pokémon Pinball: Ruby & Sapphire**](https://github.com/pret/pokepinballrs) +* [**Pokémon Mystery Dungeon: Red Rescue Team**](https://github.com/pret/pmd-red) +* [**Pokémon Emerald**](https://github.com/pret/pokeemerald) + + +## Contacts + +You can find us on [Discord](https://discord.gg/6EuWgX9) and [IRC](https://kiwiirc.com/client/irc.freenode.net/?#pret). -- cgit v1.2.3 From 1110daf2aedbec9737bfb1ae8cc572bba800d088 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Sat, 6 Apr 2019 22:34:16 +0100 Subject: Forgot this --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 435151d1f..b8b9aa233 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Other disassembly and/or decompilation projects: * [**Pokémon Red and Blue**](https://github.com/pret/pokered) * [**Pokémon Gold and Silver (Space World '97 demo)**](https://github.com/pret/pokegold-spaceworld) * [**Pokémon Yellow**](https://github.com/pret/pokeyellow) -* [**Pokémon TCG**](https://github.com/pret/poketcg) +* [**Pokémon Trading Card Game**](https://github.com/pret/poketcg) * [**Pokémon Pinball**](https://github.com/pret/pokepinball) * [**Pokémon Stadium**](https://github.com/pret/pokestadium) * [**Pokémon Gold and Silver**](https://github.com/pret/pokegold) -- cgit v1.2.3 From be687a62757f39c8c9586193100c40b32791d164 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Sun, 7 Apr 2019 10:25:34 +0100 Subject: Update INSTALL.md Added a missing installation step. --- INSTALL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 203e532bb..1fa4146e4 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -20,9 +20,10 @@ To set up the repository: git clone https://github.com/pret/pokefirered git clone https://github.com/luckytyphlosion/agbcc -b new_layout_with_libs - cd agbcc + cd ./agbcc make make install prefix=../pokefirered + make install-sdk prefix=../pokefirered cd ../pokefirered ./build_tools.sh @@ -31,6 +32,10 @@ To build **pokefirered.gba**: make -j$(nproc) +To confirm it matches the official ROM image while building, do this instead: + + make compare -j$(nproc) + **Note:** If only `.c` or `.s` files were changed, turn off the dependency scanning temporarily. Changes to any other files will be ignored and the build will either fail or not reflect those changes. make -j$(nproc) NODEP=1 -- cgit v1.2.3 From 95ad810c0bd912ca38ee8e28c9f5932eccd07217 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Sun, 7 Apr 2019 18:41:51 +0100 Subject: Stop recommending legacy WSL --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1fa4146e4..fc08af81b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,9 +8,9 @@ Until further notice, this repository requires a **baserom.gba** file, which mus **macOS:** Get the [Xcode command-line tools](https://developer.apple.com/library/archive/technotes/tn2339/_index.html#//apple_ref/doc/uid/DTS40014588-CH1-DOWNLOADING_COMMAND_LINE_TOOLS_IS_NOT_AVAILABLE_IN_XCODE_FOR_MACOS_10_9__HOW_CAN_I_INSTALL_THEM_ON_MY_MACHINE_). -**Windows 10 (1709+):** Get the [Windows Subsystem for Linux](https://docs.microsoft.com/windows/wsl/install-win10). For **Windows 10 (1607 & 1703)**, go [here](https://docs.microsoft.com/windows/wsl/install-legacy) instead. +**Windows 10 (1709+):** Get the [Windows Subsystem for Linux](https://docs.microsoft.com/windows/wsl/install-win10). -**Windows Vista, 7, 8, 8.1, and 10 (1507 & 1511):** Get [Cygwin](https://cygwin.com/install.html) and [include](https://cygwin.com/cygwin-ug-net/setup-net.html#setup-packages) the `make`, `git`, `gcc-core`, `gcc-g++`, `libpng-devel` packages. +**Windows Vista, 7, 8, 8.1, and 10 (1507, 1511, 1607, 1703):** Get [Cygwin](https://cygwin.com/install.html) and [include](https://cygwin.com/cygwin-ug-net/setup-net.html#setup-packages) the `make`, `git`, `gcc-core`, `gcc-g++`, and `libpng-devel` packages. If you're on Windows 10 1607 or 1703 and use [the prerelease version of the Linux subsystem](https://docs.microsoft.com/windows/wsl/install-legacy), consider uninstalling it. ## Installation -- cgit v1.2.3