summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--layout.link2
-rwxr-xr-xtools/unnamed.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index f7908861..a98b03f0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@ before_script:
fi;
}
script:
- - make -j2 compare
+ - make DEBUG=1 -j2 compare
- check_status
after_success:
- |-
diff --git a/layout.link b/layout.link
index 1991fa46..9a8133c1 100644
--- a/layout.link
+++ b/layout.link
@@ -289,3 +289,5 @@ SRAM $02
SRAM $03
"Boxes 8-14"
"Backup Save 3"
+HRAM
+ "HRAM"
diff --git a/tools/unnamed.py b/tools/unnamed.py
index 1a8a7ce7..e9e9155c 100755
--- a/tools/unnamed.py
+++ b/tools/unnamed.py
@@ -37,7 +37,7 @@ args = parser.parse_args()
# Get list of object files
objects = None
if args.rootdir:
- for line in Popen(["make", "-C", args.rootdir, "-s", "-p"],
+ for line in Popen(["make", "-C", args.rootdir, "-s", "-p", "DEBUG=1"],
stdout=PIPE).stdout.read().decode().split("\n"):
if line.startswith("pokegold_obj := "):
objects = line[16:].strip().split()