Rename text.s to char_draw for more consistent naming

This commit is contained in:
hugova 2025-03-29 14:27:26 +01:00
parent 6d859fba36
commit 4f585183ce
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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"