• L251 map file symbol table
    Above are found under the "SYMBOL TABLE OF MODULE" section of my generated map file. Question 1 From the L251 user guide it is said that " the first 32 bytes of DATA memory (0x00-0x1F) is grouped into...
  • Multiplication type of two number
    Is there any diff b/w multiplication time of same data type with variables with different values. e.g uint32_t x; uint32_t y; y = 2; x = 5; y = x*y; y = 655356; x = 369; y = y*x; ...
  • Is there a data type NUMBER
    I don't understand this line of code: EXTRN NUMBER (?ABD?CORE) EXTRN is external variable ? NUMBER is a data type? And what is (?ABD?CORE)? Thanks for letting me know.
  • map file
    hello! please i want to know how keil generate the map file
  • Accessing mapped global variable by reference
    Hello, I'm using the LPC2468 micro controller. I have a struct mapped to the I2C register and in the I2C interrupt I statically access that struct, and everything works fine. I've since broken...