mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-17 07:31:19 +00:00
110 lines
2.8 KiB
Plaintext
110 lines
2.8 KiB
Plaintext
QuickStart
|
|
jsr LoadTitleOffscreen
|
|
|
|
lda #6
|
|
sta VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line3
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @empty
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line4
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @empty
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line5
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @empty
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line6
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @empty
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line7
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @empty
|
|
jsr DrawCenteredString
|
|
|
|
inc VTAB
|
|
lda OffscreenPage
|
|
ror
|
|
+LDADDR @line8
|
|
jsr DrawCenteredString
|
|
|
|
rts
|
|
@line3
|
|
!byte 24
|
|
!text " T Y P E to find a game "
|
|
@empty
|
|
!byte 24
|
|
!text " "
|
|
@line4
|
|
!byte 24
|
|
!byte $20,$08,$15
|
|
!text " to browse all games "
|
|
@line5
|
|
!byte 24
|
|
!text " [Return] to play "
|
|
@line6
|
|
!byte 24
|
|
!text " [Space] to preview "
|
|
@line7
|
|
!byte 24
|
|
!text " [Ctrl-C] to cheat "
|
|
@line8
|
|
!byte 24
|
|
!text " [Esc] to go back "
|
|
; !text "0123456789012345678901234567890123456789"
|
|
; !text " .------------------. "
|
|
; !text " | Quickstart Guide | "
|
|
; !text " .--+ +--. "
|
|
; !text " | T Y P E to find a game | "
|
|
; !text " | | "
|
|
; !text " | <> to browse all games | "
|
|
; !text " | | "
|
|
; !text " | [Return] to play | "
|
|
; !text " | | "
|
|
; !text " | [Space] to preview | "
|
|
; !text " | | "
|
|
; !text " | [Ctrl-C] to cheat | "
|
|
; !text " | | "
|
|
; !text " | [Esc] to go back | "
|
|
; !text " +------------------------+ "
|