Hi Ken,
Is there a way that I can have the IDE check if a certain piece of code
goes outside of a certain memory range? For example, I have some code
starting with "org 0" and when I reach a certain point I want the location
counter to still be < 256.
It would also be nice to have a check for whether a piece of code exceeds a
certain size, for example:
limit equ (whatever)
cstart:
...code here...
cend:
then have a way to check that (cend-cstart) < limit.
Also (possibly related?) is there any documentation I can look at for the
linker file format?
Thanks,
Clint