Re: [stella] Beat em up 08

Subject: Re: [stella] Beat em up 08
From: Bob Colbert <retroware@xxxxxxxxxxxxx>
Date: Wed, 11 Nov 1998 12:06:13 -0600
At 05:28 PM 11/11/98 +0100, you wrote:
>For a SC game this is true, but this game will be a bigger bankswitched
>program, most probably 32kb with 2kb banks. I will need several banks
>all with the same origin.

Use RORG in addition to ORG, this works with -f3, no stripping of headers.
RORG will make the bank compile at a given address, regardless of its
physical address in the .bin file:

seg bank1a
ORG  $0000
RORG $F000
.
.
.
seg bank1b
ORG  $0800
RORG $F000
.
.
.
seg bank2a
ORG  $1000
RORG $F800
.
.
.
seg bank2b
ORG  $1800
RORG $F800
.
.
.
etc...

				Bob


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

Current Thread