Re: [Mspgcc-users] Block Flash write

2002-12-06 Thread David Brown
If you have a function that should always be run from ram, then it should be possible to have it copied to ram on startup. I haven't tried this on the msp430, but I have used it on a 68332, compiled with gcc. The idea is to specify a special section for the function, and use linker magic to get i

Re: [Mspgcc-users] Block Flash write

2002-12-05 Thread Dmitry
On Friday 06 December 2002 06:53, brian.sm...@tekelek.com.au wrote: > I have a lot of data to write to the information memory and want to use the > Block write rather than single byte write. This means I have to execute out > of RAM while the write is happening. Any clues as to how to do this? Y

[Mspgcc-users] Block Flash write

2002-12-05 Thread Brian . Smith
I have a lot of data to write to the information memory and want to use the Block write rather than single byte write. This means I have to execute out of RAM while the write is happening. Any clues as to how to do this? My plan is to define a function pointer to the writing function in ROM and us