From 2313211fae63d0e976c773c8d793de87b9ea631a Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 13 Sep 2020 16:46:12 -0400 Subject: Explain the text macro --- include/text.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/text.inc b/include/text.inc index bb76453..b293fd5 100644 --- a/include/text.inc +++ b/include/text.inc @@ -1,5 +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) text: macro _arg = 1 rept _NARG @@ -7,7 +9,7 @@ _WS EQUS \1 _len = STRLEN("{_WS}") _i = 1 rept _len - dw STRSUB("{_WS}", _i, 1) + dw STRSUB("{_WS}", _i, 1) _i = _i + 1 endr PURGE _WS -- cgit v1.2.3