Re: [stella] Star Fire: 1 step forward 2 steps back :-)

Subject: Re: [stella] Star Fire: 1 step forward 2 steps back :-)
From: Manuel Polik <cybergoth@xxxxxxxx>
Date: Sun, 01 Dec 2002 16:56:28 +0100
Hi there!

>I think that's what I'll do, no more experiments! :-)

Ok, I ended up with some good mixture of both 
suggestions I hope:

Wrong starting bank:

    ORG     $1FEC
    RORG    $DFEC

FirstInit
    BIT $1FF9
    NOP             ; dummy

SwitchToBank1:
    BIT $1FF9
    JMP MainGame

    .word $FFFF, $FFFF  ; bank-switching hotspots
    .word FirstInit
    .word FirstInit
    .word SwitchToBank1 ; Game Over vector

Right starting bank:

    ORG     $2FEF
    RORG    $FFEF

    BRK                     ; coming from the other bank

SwitchToBank0
    BIT $1FF8
    JMP StartScore

    .word $FFFF, $FFFF      ; bank-switching hotspots
    .word start
    .word start
    .word start

Greetings,
	Manuel

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


Current Thread