在 startup.s 中有如下的一段程序: IF :DEF: EN_CRP IF . >= 0x1fc INFO 1,"
The data at 0x000001fc must be 0x87654321.
Please delete some source before this line." ENDIF CrpData WHILE . < 0x1fc NOP WEND CrpData1 DCD 0x87654321 ;/*When the Data is 为0x87654321,user code be protected. 当此数为0x87654321时,用户程序被保护 */ ENDIF 我查过一些资料 但是不详细 请懂的大虾解说一翻: 1) IF :DEF: EN_CRP IF . >= 0x1fc 这两句 看不懂语法 不懂具体意思 2)WHILE . < 0x1fc 这句 也没见过语法 也不懂其意思 |