From f96aab40141ddeeefd582f0ad733f10f3553bb98 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Fri, 15 Dec 2017 21:32:43 -0500 Subject: [PATCH] Correct some documentation comments --- constants/pokemon_data_constants.asm | 2 +- constants/std_constants.asm | 2 +- home.asm | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index e3af35bbe..4093adfa9 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -35,7 +35,7 @@ GENDER_F100 EQU 254 ; 100 percent GENDERLESS EQU 255 ; BaseGrowthRate values -; GrowthRates indexes (see main.asm) +; GrowthRates indexes (see data/growth_rates.asm) const_def const MEDIUM_FAST const SLIGHTLY_FAST diff --git a/constants/std_constants.asm b/constants/std_constants.asm index 0667f020f..21fb6791f 100644 --- a/constants/std_constants.asm +++ b/constants/std_constants.asm @@ -1,5 +1,5 @@ ; StdScripts indexes (see engine/std_scripts.asm) -; also used in CheckFacingTileForStd (see main.asm) +; also used in TileCollisionStdScripts (see data/collision_stdscripts.asm) enum_start enum pokecenternurse enum difficultbookshelf diff --git a/home.asm b/home.asm index 68d0fe70f..f7d2e7748 100644 --- a/home.asm +++ b/home.asm @@ -1,17 +1,20 @@ INCLUDE "includes.asm" + SECTION "NULL", ROM0 NULL:: INCLUDE "rst.asm" INCLUDE "interrupts.asm" + SECTION "Header", ROM0 Start:: nop jp _Start + SECTION "Home", ROM0 INCLUDE "home/init.asm"