Re: [stella] Object handler organisation

Subject: Re: [stella] Object handler organisation
From: Manuel Polik <cybergoth@xxxxxxxx>
Date: Fri, 08 Nov 2002 08:35:54 +0100
Hi Thomas!

>Manuel wrote
>>    ...
>>    BCS .MoveLeft
>>    ADC xpos,X			; Carry is clear! Fine!
>>    JMP .HorMoveDone
>>
>>.MoveLeft
>>    EOR #$FF			; Carry is set! Excellent!
>>    ADC xpos,X
>>.HorMoveDone
>>    STA xpos,X

>Hm, why not:
>    ...
>    BCC .MoveRight
>    EOR #$FF			; Carry is set! Excellent!
>.MoveRight:
>    ADC xpos,X			; Carry is clear! Fine!
>    STA xpos,X
>
>:-)

*lol* 

- You never fail to amaze me!

Seems like I was soo exhausted after I got the first 
dozen of optimisations done, that I finally stumbled on 
executing the "Finishing move" ;-)

And I was so proud of getting that done without any 
SEC/CLC...

Thanks for the lesson master,
	Manuel

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


Current Thread