Re: [stella] Qb: v1.01 TITLE SCREEN!

Subject: Re: [stella] Qb: v1.01 TITLE SCREEN!
From: Thomas Jentzsch <tjentzsch@xxxxxx>
Date: Thu, 1 Mar 2001 19:29:53 +0100
I wrote:
> Or you can even try this:
[snip]
>         ldy #4
> .loop:
>         sta WSYNC
>         sta VSYNC               ; enable/disable vertical synch 
>         dey 
>         bne .loop
>         tya                  ; or asl
>         beq .loop         ;   bmi .loop 
[snip]

Sorry, that code is wrong, you might have noticed that
already. Here is the (I hope :) correct one:

        ldy #-3
 .loop:
        sta WSYNC
        sta VSYNC               ; enable/disable vertical synch
        iny
        bmi .loop
        tya                     ; or: asl
        beq .loop               ;  bmi .loop

Have fun!
Thomas                            
_______________________________________________________
Thomas Jentzsch         | *** Every bit is sacred ! ***
tjentzsch at web dot de |



-
Archives (includes files) at http://www.biglist.com/lists/stella/archives/
Unsub & more at http://www.biglist.com/lists/stella/

Current Thread