summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-09-15 13:33:17 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-09-15 13:33:17 -0400
commit457c82ccbc15f8988010536efd57e8718414ff20 (patch)
tree73c478ebdd99b887048395913a729274ba53fc70
parent4ad995f10ad828f826d89627f63e426828cd0446 (diff)
rgbds has moved from rednex to gbdev
-rw-r--r--include/text.inc2
-rw-r--r--tools/coverage.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/text.inc b/include/text.inc
index b293fd5..9de853a 100644
--- a/include/text.inc
+++ b/include/text.inc
@@ -1,7 +1,7 @@
INCLUDE "charmap.inc"
; Outputs each character of each argument as a 16-bit word
-; (dw "string" does not do this: https://github.com/rednex/rgbds/issues/568)
+; (dw "string" does not do this: https://github.com/gbdev/rgbds/issues/568)
text: macro
_arg = 1
rept _NARG
diff --git a/tools/coverage.py b/tools/coverage.py
index 3e57255..1815d7c 100644
--- a/tools/coverage.py
+++ b/tools/coverage.py
@@ -43,7 +43,7 @@ def main():
if s['beg'] > s['end']:
continue
if s['beg'] == 0x0000 and s['end'] > 0xFFFF:
- # https://github.com/rednex/rgbds/issues/515
+ # https://github.com/gbdev/rgbds/issues/515
continue
beg = s['beg'] & bank_mask
end = s['end'] & bank_mask