summaryrefslogtreecommitdiff
path: root/tools/fix_sections.py
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-08 21:21:12 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-08 21:21:12 -0400
commit3b704c267c4810b0d7ec2048300fcd08bad21a53 (patch)
tree8392fd35b664fb5a5a7674238da42c60379e0378 /tools/fix_sections.py
parent16d95f657647ddf20e4b2bfa3a882a88988f761f (diff)
parent5ec276e7c77244befe0b6c9931cda191aa3818b6 (diff)
Merge branch 'master' into section-reorg
Diffstat (limited to 'tools/fix_sections.py')
-rw-r--r--tools/fix_sections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fix_sections.py b/tools/fix_sections.py
index 3d864ed..dc23f52 100644
--- a/tools/fix_sections.py
+++ b/tools/fix_sections.py
@@ -42,7 +42,7 @@ TEMP_PATH = fix_sections_directory.TEMP_DIRECTORY
for root, dirs, files in os.walk(cwd):
for file in files:
rel_root = os.path.relpath(root, cwd)
- if not rel_root.startswith("build") and not rel_root.startswith("temp") and file.endswith(".asm") and file != "rst.asm" and file != "wram.asm":
+ if not rel_root.startswith("build") and not rel_root.startswith("temp") and file.endswith(".asm") and file != "rst.asm" and file != "wram.asm" and file != "zero_checksum.asm":
canonical_path = os.path.join(root, file)
rel_path = os.path.relpath(canonical_path, cwd)
with open(canonical_path, "r") as f: