??? 01/30/05 02:42 Read: times |
#86116 - Read the Bible Responding to: ???'s previous message |
What are yu tring to do? The 8051 has a Harvard Architeture.
Code goes into CDATA External RAM is XDATA. Code is read only. xdata usually does not get a ROM. If you are tring to get constant data from a ROM put it in code space. If you have filled the code space and want the constants in xdata put the ROM there. If you want both together you need to NAND PSEN and RD. If you have room in code but want to modify the data. them code the data for code to ram. Your call. |