summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md15
-rw-r--r--README.md3
2 files changed, 17 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 729014051..1b2ba259e 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,6 +1,6 @@
## Prerequisites
-| Linux | macOS | Windows 10 (build 18917+) | Windows 10 (1709+) | Windows Vista, 7, 8, 8.1, and 10 (1507, 1511, 1607, 1703)
+| Linux | macOS | Windows 10 (build 18917+) | Windows 10 (1709+) | Windows 8, 8.1, and 10 (1507, 1511, 1607, 1703)
| ----- | ----- | ------------------------- | ------------------ | ---------------------------------------------------------
| none | [Xcode Command Line Tools package][xcode] | [Windows Subsystem for Linux 2][wsl2] | [Windows Subsystem for Linux][wsl] | [Cygwin][cygwin]
@@ -42,4 +42,17 @@ If only `.c` or `.s` files were changed, turn off the dependency scanning tempor
make -j$(nproc) NODEP=1
+Convenient targets have been defined to build Pokémon LeafGreen and the 1.1 revisions of both games:
+
+ # LeafGreen 1.0
+ make -j$(nproc) leafgreen
+ # FireRed 1.1
+ make -j$(nproc) firered_rev1
+ # LeafGreen 1.1
+ make -j$(nproc) leafgreen_rev1
+
+To confirm these match the respective official ROM images, prefix `compare_` to each target name. For example:
+
+ make -j$(nproc) compare_leafgreen
+
**Note:** If the build command is not recognized on Linux, including the Linux environment used within Windows, run `nproc` and replace `$(nproc)` with the returned value (e.g.: `make -j4`). Because `nproc` is not available on macOS, the alternative is `sysctl -n hw.ncpu`.
diff --git a/README.md b/README.md
index b72d2ca86..17c0b2340 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,9 @@ This is a disassembly of Pokémon FireRed and LeafGreen.
It builds the following ROM:
* [**pokefirered.gba**](https://datomatic.no-intro.org/?page=show_record&s=23&n=1616) `sha1: 41cb23d8dccc8ebd7c649cd8fbb58eeace6e2fdc`
+* [**pokeleafgreen.gba**](https://datomatic.no-intro.org/?page=show_record&s=23&n=1617) `sha1: 574fa542ffebb14be69902d1d36f1ec0a4afd71e`
+* [**pokefirered_rev1.gba**](https://datomatic.no-intro.org/?page=show_record&s=23&n=1672) `sha1: dd5945db9b930750cb39d00c84da8571feebf417`
+* [**pokeleafgreen_rev1.gba**](https://datomatic.no-intro.org/index.php?page=show_record&s=23&n=1668) `sha1: 7862c67bdecbe21d1d69ce082ce34327e1c6ed5e`
To set up the repository, see [INSTALL.md](INSTALL.md).