Correct some documentation comments

This commit is contained in:
Remy Oukaour 2017-12-15 21:32:43 -05:00
parent e44640b008
commit f96aab4014
3 changed files with 5 additions and 2 deletions

View File

@ -35,7 +35,7 @@ GENDER_F100 EQU 254 ; 100 percent
GENDERLESS EQU 255 GENDERLESS EQU 255
; BaseGrowthRate values ; BaseGrowthRate values
; GrowthRates indexes (see main.asm) ; GrowthRates indexes (see data/growth_rates.asm)
const_def const_def
const MEDIUM_FAST const MEDIUM_FAST
const SLIGHTLY_FAST const SLIGHTLY_FAST

View File

@ -1,5 +1,5 @@
; StdScripts indexes (see engine/std_scripts.asm) ; 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_start
enum pokecenternurse enum pokecenternurse
enum difficultbookshelf enum difficultbookshelf

View File

@ -1,17 +1,20 @@
INCLUDE "includes.asm" INCLUDE "includes.asm"
SECTION "NULL", ROM0 SECTION "NULL", ROM0
NULL:: NULL::
INCLUDE "rst.asm" INCLUDE "rst.asm"
INCLUDE "interrupts.asm" INCLUDE "interrupts.asm"
SECTION "Header", ROM0 SECTION "Header", ROM0
Start:: Start::
nop nop
jp _Start jp _Start
SECTION "Home", ROM0 SECTION "Home", ROM0
INCLUDE "home/init.asm" INCLUDE "home/init.asm"