summaryrefslogtreecommitdiff
path: root/engine/link
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-03 17:07:05 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-03 17:07:05 -0400
commite1659ecd41dfac70eb021c0f5fe983ed6f043433 (patch)
tree86ec6137c666650168716247fa63241e79b1788b /engine/link
parentf3f0e711bf4f4205fd29f2b448c93ff5597507e5 (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 'engine/link')
-rw-r--r--engine/link/place_waiting_text.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/link/place_waiting_text.asm b/engine/link/place_waiting_text.asm
index a9f712e..ae11c74 100644
--- a/engine/link/place_waiting_text.asm
+++ b/engine/link/place_waiting_text.asm
@@ -1,6 +1,6 @@
INCLUDE "constants.asm"
-SECTION "PlaceWaitingText", ROMX[$4000], BANK[$01]
+SECTION "engine/link/place_waiting_text.asm", ROMX
PlaceWaitingText:: ; 1:4000
hlcoord 3, 10
@@ -22,4 +22,4 @@ PlaceWaitingText:: ; 1:4000
jp DelayFrames
.Waiting
- db "つうしんたいきちゅう!@"
+ db "つうしんたいきちゅう!@" \ No newline at end of file