This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Compilation Error

There's no overflow in my data memory so what could this error be?

*** ERROR L107: ADDRESS SPACE OVERFLOW
SPACE: DATA
SEGMENT: _DATA_GROUP_
LENGTH: 0071H

Parents
  • Remember that your _DATA_GROUP_ has to fit into directly addressable RAM. i.e. you have only 128 bytes for your register banks, _DATA_GROUP_ and any other objects stored there. If your _DATA_GROUP_ is already 0071H bytes long, I don't think it is surprising that you are running out of space.

Reply
  • Remember that your _DATA_GROUP_ has to fit into directly addressable RAM. i.e. you have only 128 bytes for your register banks, _DATA_GROUP_ and any other objects stored there. If your _DATA_GROUP_ is already 0071H bytes long, I don't think it is surprising that you are running out of space.

Children
No data