Rename text.s to char_draw for more consistent naming
This commit is contained in:
parent
6d859fba36
commit
4f585183ce
2 changed files with 3 additions and 3 deletions
|
@ -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
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue