导航: 老古网老古论坛XMOS公共讨论区XMOS开源项目区单片机程序设计嵌入式系统广告区域
→XDEF和XREF都是什么指令[prettygenie]

 *第12844篇: XDEF和XREF都是什么指令

  
楼 主:prettygenie 2003年5月29日16:03
 XDEF和XREF都是什么指令
我在汇编程序里见到的,可是在书里没找见
  
2楼:liuqh20 2008年5月10日12:58
 [讨论]

The exported label   <name>   is using an ELF extension 

This message is only issued when using the ELF object file format. I can be ignored when using the SmartLinker, however, foreign linker may not know this extension and therefore the linking might fail. 

The exported label   <name>   is using an ELF extension for exported labels, which are defined as imported label plus offset. This situation cannot be expressed in a standard ELF symbol table, so the assembler is generating a symbol with type STT_LOPROC. This message is disabled by default, so it does not occur unless it is explicitly enabled. When setting this message to an error, code containing such cases cannot be assembled. 

Example 
XREF ImportedLabel
ExportedLabel: EQU ImportedLabel + 1
XDEF ExportedLabel 
Tips 
Set this message to an error when you plan to use a foreign linker. Adapt the source code so that this case does not occur. 

以上摘自CodeWarrior3.1版本的CodeWarrior Help  System,搜索关键字xdef


>>>>>>对该主题发表你的看法

本主题贴数2,分页: [第1页]


[上一篇主题]:请问

[下一篇主题]:[求助]有人有开发PCI的经验吗?