I was attempting to build cynthcart 1.2.4 for a basic rom replacement,
and I noticed building with: dasm cynth1_2_4.asm -f3 fails due to the
trailing ORG $bfff being a backward reference since the image is too large.
I noticed the following:
IF MODE=KERNEL
BASEADDR equ $8000
I changed that to $a000 since everything between $8000 and $a000 would
be filler in this case. This brings the size down to ~9237 bytes, still too
big.
Since the bulk of the code + tuning data is after $a483 for the basic idle loop
entry point, it can't fit in 8k. The solution is likely to rearrange some
things to
utilize the unused space prior to $a483. I was just wondering if this a known
problem, or if I'm just plain doing something wrong before I jump into it.
Thanks.