Hello!

I'm currently using this PIC because it holds the RTCC; unfortunatly it seems that it's not possible to have a device with two serial ports, the RTCC and an EEPROM at the same time, so I have to use the code flash in order to store my permanent data.
After reading some post, in particular this one:
http://www.picbasic.co.uk/forum/show...ight=writecode
I discovered that it's not possible to write only 1 word at time using PBP-level commands and the assembly should be use (the mcu datasheet tells that 2bytes writings are allowed on this device).
By the way, I found out that it's possible to write ONLY 2 bytes on the flash, with a single WRITECODE operation (I mean, without 64 cycles-wide FOR NEXT loops) by changing the BLOCKSIZE statement inside the .INC file from 64 to 2:
BLOCK_SIZE EQU 2
I would like to know what I'm going to compromise doing that. For now, everything seems to work fine, but I'm afraid some memory management or what else can be made mulfunctionig . Can you please help me?
Thank you very much