4cade/src/ui.font.a
2021-10-18 18:18:22 -04:00

32 lines
715 B
Plaintext

;license:MIT
;(c) 2018-2020 by 4am
;
; hi-res font drawing routines
;
; Glue functions that handle bank switching and calling the real font drawing routines
; that live in LC RAM 2 now.
;
; Public functions
; - Draw40Chars
; - DrawCenteredString
; - DrawString
;
DrawString
jsr StoreAYAndSwitchToBank2
jsr DrawStringInternal
; /!\ execution falls through here to JmpSwitch
JmpSwitch
jmp SwitchToBank1
Draw40Chars
jsr SwitchToBank2
jsr Draw40CharsInternal
beq JmpSwitch ; always
DrawCenteredString
jsr StoreAYAndSwitchToBank2
jsr DrawCenteredStringInternal
bne JmpSwitch ; always