Re: [stella] DASM question

Subject: Re: [stella] DASM question
From: mathys66@xxxxxxxxxx
Date: Fri, 26 Mar 2004 09:15:26 +0100
>You're looking for
>
>.P0 dex
>     bne .P0
>
>then.
>

This mechanism works slightly different, though. The assembler doesn't look
for the nearest label called .P0. Instead, you define scopes for such local
labels with the subroutine directive:

somesubroutine SUBROUTINE
.P0 dex
    bne .P0

someothersubroutine SUBROUTINE
.P0 dey
    bne .P0

cheers
thomas

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


Current Thread