diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-23 23:54:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 23:54:39 -0400 |
commit | bce6e258054b49282b7deeb990aaa5bf2cc1fcec (patch) | |
tree | 9cc9e9e655bfe766a46116f1f0205d108cf5cd87 /main.asm | |
parent | f9f438473fe1c92a3d6313639db8048fe41ba9d0 (diff) | |
parent | 8b40e990d31efbc2c5df4ad65b141dc1c1c24a47 (diff) |
Merge pull request #59 from Rangi42/master
Generate the Stadium 2 checksum data with pfero's tool instead of raw INCBINs
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 22 |
1 files changed, 8 insertions, 14 deletions
@@ -439,18 +439,12 @@ INCBIN "gfx/pokegear/pokegear.2bpp.lz" INCLUDE "data/credits_strings.asm" -SECTION "Stadium Data", ROMX +SECTION "Stadium 2 Checksums", ROMX[$7DF8], BANK[$7F] -IF DEF(_GOLD) -IF DEF(_DEBUG) -INCBIN "data/stadium/stadium_gold_debug.bin" -ELSE -INCBIN "data/stadium/stadium_gold.bin" -ENDC -ELIF DEF(_SILVER) -IF DEF(_DEBUG) -INCBIN "data/stadium/stadium_silver_debug.bin" -ELSE -INCBIN "data/stadium/stadium_silver.bin" -ENDC -ENDC +; The end of the ROM is taken up by checksums of the content, apparently used +; by Pokémon Stadium 2 due to the checksums' "N64PS3" header. (In Japan, +; Pokémon Stadium Gold and Silver was the third Stadium release for N64.) +; This SECTION reserves space for those checksums. +; If it is removed, also remove the "tools/stadium" command in the Makefile. + + ds $208 |