From 4f585183ceb4807ad50e3d985762d6ab0c5da483 Mon Sep 17 00:00:00 2001 From: hugova Date: Sat, 29 Mar 2025 14:27:26 +0100 Subject: [PATCH] Rename text.s to char_draw for more consistent naming --- wip-hugo/routines/text/{text.s => char_draw.s} | 2 +- wip-hugo/source.s | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename wip-hugo/routines/text/{text.s => char_draw.s} (98%) 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"