#include p16f877a.inc ;Include standard header file
;for the selected device.
org 0x2100 ;The absolue address 2100h is
;mapped to the 0000 location of
;EE data memory.
;You can create a data or character table starting from any
;address in EE data memory.
ch_tbl2 de "PICmicro" ;8 EE data memory locations
;(starting from 0) will be filled
;with 8 ASCII characters.
end
指的是EEPROM的映射地址,你可以打开IDE->help->Topics->Mpasm 搜索一下EEPROM,里面有描述 |