2011-06-14 08:20 AM
Here's a question for the STVD & Cosmic gurus! Since bit instructions in the STM8 do not utilize the zero page addressing I wanted to move the ''.bit'' section out of the ''Zero Page'' and into ''Ram'' so I'd have more room down there. In STVD, I cannot make any change to the ''.bit'' section. Is there a way to allow changes?
As a side note, I'd sure like to be able to modify the default segment/section mapping. jdf #cosmic-link-linking-stvd2011-06-15 12:17 AM
2011-06-15 07:37 AM
Thanks Luca
I'll do it that way if it's not possible in STVD. jdf2011-06-17 01:45 AM
2011-06-17 10:19 AM
yeah, it is confusing
+seg .bit -b 0x800 -m 0x20 -n .bit -id will put the booleans at 0x100 A few revs back STVD didn't allocate the bits at all so I created a Boolean segment from 0x800 to 0x81f and a .bit section with a -id option these older project files carry over but new ones force the bits into zero page. INTERESTING btw thanks a lot for the info I'll have to try 0x100:0 instead of 0x800 jdf