Comments help find map_data.asm

This commit is contained in:
Remy Oukaour 2018-01-16 23:55:33 -05:00
parent 6d20cf3e80
commit 3dcc0066a5
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
map_data: MACRO
;\1: map label
;\1: map name
;\2: map id
;\3: border block
;\4: connections: combo of NORTH, SOUTH, WEST, and/or EAST, or 0 for none
@ -17,7 +17,7 @@ ENDM
connection: MACRO
if "\1" == "north"
;\2: map id
;\3: map label (eventually will be rolled into map id)
;\3: map name (eventually will be rolled into map id)
;\4: x
;\5: offset?
;\6: strip length
@ -34,7 +34,7 @@ endc
if "\1" == "south"
;\2: map id
;\3: map label (eventually will be rolled into map id)
;\3: map name (eventually will be rolled into map id)
;\4: x
;\5: offset?
;\6: strip length
@ -51,7 +51,7 @@ endc
if "\1" == "west"
;\2: map id
;\3: map label (eventually will be rolled into map id)
;\3: map name (eventually will be rolled into map id)
;\4: y
;\5: offset?
;\6: strip length
@ -68,7 +68,7 @@ endc
if "\1" == "east"
;\2: map id
;\3: map label (eventually will be rolled into map id)
;\3: map name (eventually will be rolled into map id)
;\4: y
;\5: offset?
;\6: strip length

View File

@ -1,5 +1,5 @@
map_def: MACRO
;\1: map label
;\1: map name: for the MapData pointer (see data/maps/map_data.asm)
;\2: tileset: a TILESET_* constant
;\3: environment: TOWN, ROUTE, INDOOR, CAVE, ENVIRONMENT_5, GATE, or DUNGEON
;\4: location: from constants/landmark_constants.asm