Harsh Linker says my app is a garbage file.
alban read (2898) 20 posts |
Using the artificially intelligent assembler (for first time) I want to create an absolute image; I have a readonly data area; a read write data area and a code area; at this point very little data, almost no code. Link now likes to say “relocated value too big for instruction sequence.” at hex offset blah blah. |
alban read (2898) 20 posts |
It seems link is happy at least; if I use ADRL instead of ADR; so the crashing can now commence. |
Stuart Swales (1481) 351 posts |
In ye olden days you’d just have ro-data interspersed with code and liberal use of LTORG to keep in all ADR-local. If you have separate code and data areas, data gets away from the code quickly, requiring ADRL. |
alban read (2898) 20 posts |
Thanks very much; I will explore these options. |