Re: Bootloader - erase flash memory
From: Gerhard Hempl (gerhard.hempl.WANT_at_NO.SPAM.gmx.de)
Date: 11/17/04
- Next message: DanD: "ATMEGA / AVR GCC - newbie questions"
- Previous message: Jim Granville: "Re: AVR Flash EMI Susceptibility?"
- In reply to: Thomas Baier: "Bootloader - erase flash memory"
- Next in thread: Casey: "Re: Bootloader - erase flash memory"
- Reply: Casey: "Re: Bootloader - erase flash memory"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 17 Nov 2004 16:10:41 +0100
Thomas Baier wrote:
> The dissasembled code uses
> instructions like
> MEMMOV 0XAAAA, #0xAAAA, R3
> but I havn't found out what this instruction does and the assembler I use
> (Reads166 - Rigel Cooperation) doesn't even know it. So could anybody tell
> me what MEMMOV does? (google didn't help :'-( )
I don't know Reads166, but it is defninitely not the fault of the assembler.
I am pretty sure, that there is no such instruction available on a C16x CPU.
The correct version of the instruction would be something like
mov 0xAAAA, R3
assuming that DPP2 contains the correct value.
I don't know the meaning of the second operand in your example.
What disassembler are you using that produces these funny mnemonics?
Are there any options to tell him that it should use the C16x
instruction set?
Best regards
Gerhard
- Next message: DanD: "ATMEGA / AVR GCC - newbie questions"
- Previous message: Jim Granville: "Re: AVR Flash EMI Susceptibility?"
- In reply to: Thomas Baier: "Bootloader - erase flash memory"
- Next in thread: Casey: "Re: Bootloader - erase flash memory"
- Reply: Casey: "Re: Bootloader - erase flash memory"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|