We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
hi, please help me to move out of this problem.before the problem i have the following msg. Program Size: data=106.3 xdata=370 code=59759 with no error but when i added/called (as it already created and also called from some other it works fine)function i got following msg. *** ERROR L107: ADDRESS SPACE OVERFLOW SPACE: DATA SEGMENT: _DATA_GROUP_ LENGTH: 006BH Program Size: data=146.5 xdata=370 code=59768
That word says it all: do you know what "Overflow" means...?
The message also tells you where the overflow has occurred - in the DATA segment.
You have allocated too much in the poor 128 bytes internal direct addressing block.
Basically you should read something about 51 architecture, especially on direct/indirect internal addressing.
And you should know something about keywords data, idata, pdata, xdata, their definitions and their corresponding storage spaces.