intro screen

This commit is contained in:
2026-07-15 22:39:08 +02:00
parent be94eef972
commit 97216d245d
6 changed files with 205 additions and 22 deletions
+9 -3
View File
@@ -5,12 +5,16 @@
; -----------------------------------------------------------
title_init:
lda #COL_SKY ; back from the intro's black screen
sta bg_top
lda #COL_GRASS
sta bg_bot
jsr clear_screen
jsr draw_road
+prbig 1, 8, RED, txt_rabbit, 6
+prtext 6, 16, WHITE, txt_scooter, 7
+prtext 17, 4, WHITE, txt_info, 31
+prtext 17, 8, WHITE, txt_info, 23
; one parked scooter per lane on sprites 0-4, all in red
ldx #4
@@ -86,10 +90,12 @@ tu_pos:
lda framectr
and #32
bne tu_hide
+prtext 15, 10, YELLOW, txt_press, 19
+prtext 15, 11, YELLOW, txt_press, 17
jmp tu_start
tu_hide:
+prtext 15, 10, YELLOW, txt_blank, 19
lda #9 ; hide: repaint road row 15 over the text
sta drtmp
jsr road_row
tu_start:
jsr start_edge
beq tu_done