• Reading memory address
    I have following code to read the variable address by using huge pointer. unsigned int Regular_Shutdown; unsigned int huge *const Array[1] = {(unsigned char huge)&Regular_Shutdown}; unsigned int...
  • Read only address in memory debug window
    Hi guys, I have a problem that I used J-LINK to debug memory. As for the chip side, the external flash base is 0x10000000 and can't be modified. However, I can use J-LINK to modify this memory address...
  • physical address, memory mapping
    I would like to know what is meant by a physical address (let say a LCD display at address 0x8000) and how can I access the device. Is it just the chip select that is hardwired to that address? Then how...
  • Reading a memory location into a C varaible
    Hi, I need to read a memory location (SRAM)and load the value into a variable of type integer in my 'C' code. How do I achieve the above mentioned problem in C? Do I need to do some kind of translations...
  • reading data from code memory
    I've stored a hex file in my 8051 code memory starting from 0X5000 onwards and want to read it and store it to another processor.How can I implement it in C