diff options
author | Sanqui <gsanky@gmail.com> | 2017-03-15 14:58:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-15 14:58:53 +0100 |
commit | 365d98d189a6bf541a9d6e2cc83407114c080858 (patch) | |
tree | 270ad8cc94f3702edda23c0b4f3c445bdba9698c /text/common_text.asm | |
parent | a722f936a9ef21348bc35b7a43efac1da23e04a3 (diff) | |
parent | e28b88f56d666484b994fc9cf28cc5d4cf50c803 (diff) |
Merge pull request #358 from AntonioND/an/fix-floating
Fix floating sections
Diffstat (limited to 'text/common_text.asm')
-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" |