• ERROR 107 : ADDRESS SPACE OVERFLOW
    Hello, I am trying to add a new feature in existing Product. When I added new *.c file & linker gave me above Error Message (Address space overflow ), though I did not used any IDATA variable in the...
  • Error in Keil L-107
    HI all, I am working on a project based on Electronic lockers using 89V51RD2 microcontroller. and keil for programming. but when i try to compile i am getting an error *** ERROR L107: ADDRESS SPACE...
  • ERROR L107: ADDRESS SPACE OVERFLOW
    Hallo, I have written in my experimental(!) code a global variable : int idata arr[60]; The stack is explicitly assigned to internal memory space (memory type : idata - 256 byte maximum). But I...
  • Error L107: ADDRESS SPACE OVERFLOW
    Hi, We are developing firmware for Cypress EZUSB processor. At beginning, our program only had 1 source C file and it worked fine. Now we have 2 source C file which share 2 common header files, and...
  • ERROR L107: ADDRESS SPACE OVERFLOW
    I get the following linker error on trying to compile a program as simple as this: ----------------------------- #include <REG51.H> void main() { while(1) { P2 ^= 0xff; } } --------------------...