[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-gcc-list] avr-gdb: how to modify memory from commandline and fi
From: |
Theodore A. Roth |
Subject: |
Re: [avr-gcc-list] avr-gdb: how to modify memory from commandline and file |
Date: |
Wed, 13 Mar 2002 15:33:14 -0700 (MST) |
You can read sram from gdb with the 'x/b addr' command, but you have to
add 0x00800000 to addr. For example, to read from sram address 0x400:
(gdb) x/b 0x800400
You should be able to set a value at an address like this:
(gdb) set {unsigned char}0x800400 = 0xa5
Hope that helps.
Ted Roth
On Wed, 13 Mar 2002, Klaus Rudolph wrote:
>Hi all,
>
>this is maybe a absolute generic gdb question:
>
>How can i modify memory (sram) with gdb. With ddd i got only
>errors, maybe a bug in ddd. But ddd is not the actual version at all.
>
>Is the address for the memory modification with offset 0x60 or from
>0x00 for the sram?
>I use it with the simulavr.
>
>Is it maybe possible to use a memory map generated from an
>eeprom.srec file? this is maybe a question not for gdb but
>the simulavr :-)
>
>
>Thanks
> Klaus
>avr-gcc-list at http://avr1.org
>
avr-gcc-list at http://avr1.org