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

github.com/ClusterM/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>2020-10-02 16:17:32 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2020-10-02 16:17:32 +0300
commitdd3c175ac35f64dea3442828e24ebf72bddbc03b (patch)
treebefee74116ef179874b1bcc9c63380904b2f3971 /tests.asm
parent4832abc5184206d22902a01bbec8d96d0718047f (diff)
Tests fix, do CHR RAM size detect only once
Diffstat (limited to 'tests.asm')
-rw-r--r--tests.asm7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests.asm b/tests.asm
index e4e408b..83f614e 100644
--- a/tests.asm
+++ b/tests.asm
@@ -5,6 +5,9 @@ TEST_CHR_RAM_FAILED .rs 1
TEST_BANK .rs 1
do_tests:
+ ; detect CHR RAM size
+ jsr detect_chr_ram_size
+do_tests_again:
; invert TEST_XOR
lda <TEST_XOR
eor #$FF
@@ -14,7 +17,6 @@ do_tests:
sta $2001
jsr waitblank_simple
jsr enable_prg_ram
- jsr detect_chr_ram_size
lda #$00
; writing
sta <TEST_RW
@@ -205,4 +207,5 @@ do_tests:
.do_tests_stop:
jmp .do_tests_wait
.do_tests_ok:
- jmp do_tests
+ jmp do_tests_again
+