• Declaring a constant structure in flash memory without initialization
    Hello everyone! I am using Keil uVision 5.28 with Compiler V6.12. How to declare a constant structure in flash memory so that it is not initialized by programmer / debugger and functions from scatterloader...
  • Declaring a constant structure in flash memory without initialization
    Hello everyone! I am using Keil uVision 5.28 with Compiler V6.12. How to declare a constant structure in flash memory so that it is not initialized by programmer / debugger and functions from scatterloader...
  • How does memory get allocated when you declare a structure
    How does memory get allocated for the structure on Keil C51 8.x? Is it when I populated the contents of the structure right after declaring the structure does the memory get allocated. I am using a global...
  • How does memory get allocated when you declare a structure
    How does memory get allocated for the structure on Keil C51 8.x? Is it when I populated the contents of the structure right after declaring the structure does the memory get allocated. I am using a global...
  • How to declare a structure?
    I define an area of memory that in 'non-volatile' so it doesn't get cleared on powerup. I do this is a module called memmap.asm like this: MyData DS 512 ;Located at 0x801C In another module, I want...