CPU = 16F876 MHZ = 10 CONFIG 16254 ;*********************************************** ; http://www.basicmicro.com ; Title : writedm.bas ; Author : Dale Kubin ; Date : 04/29/02 ; ReadDM and WriteDm commands. Read and write to ; the internal eeprom during run time. More ; functionality than READ and WRITE commands. ;*********************************************** string var byte(12) temp var byte main writedm 0,["Hello world"] readdm 0,[str string\11] mainlp for temp = 0 to 11 Debug [string(temp),13] Next goto mainlp