4cade/src/ui.credits.a

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-07-10 17:37:59 +00:00
;license:MIT
;(c) 2018-9 by 4am
;
; credits page
;
; Public functions
; - Credits
2019-10-08 03:50:23 +00:00
; - Help
;
2019-07-10 17:37:59 +00:00
Credits
; clobbers all
2019-09-10 02:38:17 +00:00
jsr LoadFile ; load credits text into $8000
!word kRootDirectory
2019-09-21 22:04:38 +00:00
!word kCreditsFile
2019-09-10 02:38:17 +00:00
!word $8000
2019-07-10 17:37:59 +00:00
jsr ClearOffscreen
lda OffscreenPage
ror ; draw on offscreen page
+LDADDR $8000
jsr DrawPage ; draw credits
jsr ShowOtherPage ; show credits
jsr WaitForKeyFor30Seconds; wait
2019-10-08 03:53:52 +00:00
-- bit CLEARKBD ; don't care about key
jsr ShowOtherPage ; back to previous page
2019-10-08 03:53:52 +00:00
- clc ; if called from search mode, tell caller not to refresh
2019-07-10 17:37:59 +00:00
rts
Help
; clobbers all
jsr LoadHelpOffscreen
jsr ShowOtherPage
jsr WaitForKeyFor30Seconds
2019-10-08 03:53:52 +00:00
cmp #$88
2019-10-08 17:19:20 +00:00
beq BrowseMode
cmp #$83
2019-10-08 03:53:52 +00:00
beq -
jsr IsUpDownOrRightArrow
2019-10-08 03:53:52 +00:00
beq -
jsr IsSearchKey
2019-10-08 03:53:52 +00:00
bne --
2019-10-10 01:02:46 +00:00
rts