diff --git a/wip-hugo/routines/text/text.s b/wip-hugo/routines/text/char_draw.s similarity index 98% rename from wip-hugo/routines/text/text.s rename to wip-hugo/routines/text/char_draw.s index 6c11f40..e4aed64 100644 --- a/wip-hugo/routines/text/text.s +++ b/wip-hugo/routines/text/char_draw.s @@ -4,7 +4,7 @@ ;; Takes in a PETSKI-code in CODE ;; And prints it ON X_pos, Y_pos ;; Note that this is the real positions divided by 8 -.proc text +.proc char_draw X_pos = $FA Y_pos = $F9 charset = $FB diff --git a/wip-hugo/source.s b/wip-hugo/source.s index fb7dab9..b22af8d 100755 --- a/wip-hugo/source.s +++ b/wip-hugo/source.s @@ -4,12 +4,12 @@ .include "STARTUP.s" ;.include "routines/line/line_test_time.s" -jsr text +jsr char_draw ;;This is used by .s files to terminate nicely without reading includes at the end! exit: jmp exit -.include "routines/text/text.s" +.include "routines/text/char_draw.s" .include "routines/memory/memset.s" .include "routines/memory/pixel_draw.s" .include "routines/memory/memcpy.s"