Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/coolgirl-multicart/coolgirl-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-26 04:23:42 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-05-26 04:23:42 +0300
commite672ebcb73b042354ea4e6cbc0e95789cb44ffb0 (patch)
treef48b11e33bda13c2f656cf31ff65724e401fa031 /buildinfo.asm
parent7c48ca9422e7024b84ea905ff6753fe38d5542c3 (diff)
Fixes
Diffstat (limited to 'buildinfo.asm')
-rw-r--r--buildinfo.asm21
1 files changed, 12 insertions, 9 deletions
diff --git a/buildinfo.asm b/buildinfo.asm
index 581f3c4..a306ca3 100644
--- a/buildinfo.asm
+++ b/buildinfo.asm
@@ -180,6 +180,14 @@ print_prg_ram:
.end:
jsr print_text
+ ; draw header
+ lda #$20
+ sta PPUADDR
+ lda #$00
+ sta PPUADDR
+ jsr draw_header1
+ jsr draw_header2
+
; draw footer
lda #$23
sta PPUADDR
@@ -187,6 +195,7 @@ print_prg_ram:
sta PPUADDR
jsr draw_footer1
jsr draw_footer2
+
jsr load_text_attributes
; disable arraows
@@ -195,15 +204,9 @@ print_prg_ram:
sta SPRITE_0_Y
sta SPRITE_1_Y
- ; reset scrolling
- lda #0
- sta <SCROLL_LINES_TARGET
- sta <SCROLL_LINES_TARGET+1
- sta <SCROLL_LINES
- sta <SCROLL_LINES+1
- sta <SELECTED_GAME
- sta <SELECTED_GAME+1
- sta <SCROLL_LINES_MODULO
+ ; disable scrolling
+ lda #1
+ sta SCROLL_LOCK
; enable PPU
jsr waitblank_simple