A discussion group for the PICMicro microcontroller. Also called the Microchip PIC, this list is dedicated to the use and abuse of this fine, simple, microcontroller. Close to topic posts are welcome, ie. general electronics.
|
I,m having a lot of fun on a 16F84 project of mine which relies on data stored in the eeprom memory. Question : how do I predefine whats stored in the eeprom area? That is, as part of the .asm file. Or does it need to be saved in a seperate file. I am using ICPROG to program my PIC, hopefully it will recognise the extra data. Someone else told me to use the org command at the eeprom address, but I can't find the address in the 16F84 datasheet. Thanks in advance, Texy |
|
|
|
Hi! ORG 2100H DATA 0x06 ; Address 0 DATA 0x02 DATA 0x02 DATA 0x04 DATA 0x03 Hope it will be helpfull -- Best Regards Gökhan ÖZCAN -----Original Message----- From: "el_gringo69uk" <> To: Date: Wed, 05 Mar 2003 21:49:34 -0000 Subject: [piclist] mplab and eeprom data area > I,m having a lot of fun on a 16F84 project of mine which relies on > data stored in the eeprom memory. > Question : how do I predefine whats stored in the eeprom area? > That is, as part of the .asm file. Or does it need to be saved in a > seperate file. I am using ICPROG to program my PIC, hopefully it will > recognise the extra data. > Someone else told me to use the org command at the eeprom address, but > I can't find the address in the 16F84 datasheet. > Thanks in advance, > Texy > ------------------------ Yahoo! Groups Sponsor > ---------------------~--> > Get 128 Bit SSL Encryption! > http://us.click.yahoo.com/LIgTpC/vN2EAA/xGHJAA/dN_tlB/TM > ---------------------------------------------------------------------~- > > > > to unsubscribe, go to http://www.yahoogroups.com and follow the > instructions > > |
|
|
|
--- In , "GOKHAN OZCAN" <988936@s...> wrote: > Hi! > > ORG 2100H > > DATA 0x06 ; Address 0 > DATA 0x02 > DATA 0x02 > DATA 0x04 > DATA 0x03 > > Hope it will be helpfull > -- > Best Regards > Gökhan ÖZCAN Yes - thankyou - that worked a treat! Texy |