diff options
| author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-03 17:07:05 -0400 |
|---|---|---|
| committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-03 17:07:05 -0400 |
| commit | e1659ecd41dfac70eb021c0f5fe983ed6f043433 (patch) | |
| tree | 86ec6137c666650168716247fa63241e79b1788b /data/maps/maps.asm | |
| parent | f3f0e711bf4f4205fd29f2b448c93ff5597507e5 (diff) | |
Introduce linkerscript.
Addresses of sections will now be added to the linkerscript via `org`, and the section name will be the path/to/file. If there is more than one section in the file, then add a @SectionName after the path/to/file to describe the section.
Diffstat (limited to 'data/maps/maps.asm')
| -rw-r--r-- | data/maps/maps.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/maps/maps.asm b/data/maps/maps.asm index 1332a0e..6f8f896 100644 --- a/data/maps/maps.asm +++ b/data/maps/maps.asm @@ -11,7 +11,7 @@ map: MACRO db 0, 0 ; ??? ENDM -SECTION "Map Data", ROMX[$4000], BANK[$04] +SECTION "data/maps/maps.asm", ROMX db 0 ; ??? @@ -294,4 +294,4 @@ MapGroup_Misc: map SlowpokeWellEntrance, TILESET_CAVE, CAVE, LANDMARK_NONE map SlowpokeWellMain, TILESET_CAVE, CAVE, LANDMARK_NONE -MapGroup_Empty: +MapGroup_Empty:
\ No newline at end of file |
