If I use one variable float or one Interrupt fonction the next error appears:
Error L107 Adress space overflow Space: Data Segement: _Data_Group_ Lengh: 002AH
Do you know why??
Read-Only
Author Mark Odell
Posted 24-Sep-2002 13:16 GMT
Toolset C51
RE: Keil C51 Development Kits, for Cygnal
Mark Odell
Maybe. Rule one. Start with the SMALL model. Rule Two. Give every variable a memory space storage qualifier. Place only your most critically fast variables in data. Allocate the rest in idata. Large arrays or structures go in xdata if you have external data. Rule Three. Turn on optimization, I use OT(9, size) even during debug.