• Const data location?
    This is the map file in the keil's examples directory, but i have a question. Does the const data in CODE Memory locate in each bank(1-3)?Why? LINK MAP OF MODULE: Bank_ex1 (C_ROOT) TYPE BASE...
  • Initialized const at fixed location?
    Hi! I've got a piece of source in my current project which represents a balanced binary tree, built from a load of preinitialized structs in C. All that needs to be visible from the "outside" is...
  • const locating in code space
    I am trying to specify the flash address location for a large lookup table (300k). Can I specify a user class for this? How do I define it and reference the class from within my c code? Jeff
  • printf data abort - (again)
    Hello, I've problems with the printf() routine. I receive frames over the ethernet in a very short intervall. If I received a frame I set a flag in the ISR. void ethernet_interrupt(void) __irq...
  • const placed in DATA segment
    Hi All, when I write: const char mysting[] ={"my string"}; data are placed to DATA segment, not code sement. I know if it would be written like this: code char mysting[] ={"my string"}; data...