;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 ; - DrawPage ; - Draw40Chars ; - DrawCenteredString ; - DrawString ; DrawString jsr StoreAYAndSwitchToBank2 jsr DrawStringInternal bne JmpSwitch ; always DrawPage jsr StoreAYAndSwitchToBank2 jsr DrawPageInternal JmpSwitch jmp SwitchToBank1 Draw40Chars jsr SwitchToBank2 jsr Draw40CharsInternal beq JmpSwitch ; always DrawCenteredString jsr StoreAYAndSwitchToBank2 jsr DrawCenteredStringInternal bne JmpSwitch ; always