diff options
author | AntonioND <antonio_nd@outlook.com> | 2017-03-14 23:16:40 +0000 |
---|---|---|
committer | AntonioND <antonio_nd@outlook.com> | 2017-03-15 00:52:26 +0000 |
commit | e28b88f56d666484b994fc9cf28cc5d4cf50c803 (patch) | |
tree | 270ad8cc94f3702edda23c0b4f3c445bdba9698c /text | |
parent | a722f936a9ef21348bc35b7a43efac1da23e04a3 (diff) |
Fix floating sections
This is needed so that rgblink doesn't move them around after modifying
it's placement algorithm.
Signed-off-by: AntonioND <antonio_nd@outlook.com>
Diffstat (limited to 'text')
-rw-r--r-- | text/common_text.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/text/common_text.asm b/text/common_text.asm index 66a142849..09a45a0fc 100644 --- a/text/common_text.asm +++ b/text/common_text.asm @@ -1,12 +1,12 @@ INCLUDE "includes.asm" -SECTION "Text 1", ROMX, BANK[$6F] +SECTION "Text 1", ROMX[$4000], BANK[$6F] INCLUDE "text/common_1.asm" -SECTION "Text 2", ROMX, BANK[$70] +SECTION "Text 2", ROMX[$4000], BANK[$70] INCLUDE "text/common_2.asm" INCLUDE "text/common_3.asm" -SECTION "Text 3", ROMX, BANK[$71] +SECTION "Text 3", ROMX[$4000], BANK[$71] INCLUDE "text/common_4.asm" INCLUDE "text/common_5.asm" |