如何在MPLAB C18中使用内联汇编?

时间:2013-07-25 18:13:02

标签: c assembly embedded microcontroller pic

我正在使用MPLAB C18,它提供了一个内部汇编程序,可以从C项目中调用汇编函数。我遵循有关如何使用内联汇编的规则,我怀疑有关“必须使用全文助记符进行表读/写”的操作会在构建项目时导致语法错误消息。

The internal assembler differs from the MPASM assembler as follows: 

No directive support

Comments must be C or C++ notation
Full text mnemonics must be used for table reads/writes. i.e.,
TBLRD
TBLRDPOSTDEC
TBLRDPOSTINC
TBLRDPREINC
TBLWT
TBLWTPOSTDEC
TBLWTPOSTINC
TBLWTPREINC
No defaults for instruction operands - all operands must be fully specified
Default radix is decimal
Literals are specified using C radix notation, not MPASM assembler notation. For example, a hex number should be specified as 0x1234, not H'1234'.
Label must include colon
Indexed addressing syntax (i.e., []) is not supported - must specify literal and access bit (e.g., specify as CLRF 2,0, not CLRF [2])

这是我使用的代码,我从PIC18F87J11数据表中获取有关从闪存中读取的代码。

MOVLW CODE_ADDR_UPPER ; Load TBLPTR with the base
MOVWF TBLPTRU ; address of the word
MOVLW CODE_ADDR_HIGH
MOVWF TBLPTRH
MOVLW CODE_ADDR_LOW
MOVWF TBLPTRL 
READ_WORD
TBLRD*+ ; read into TABLAT and increment
MOVF TABLAT, W ; get data
MOVWF WORD_EVEN
TBLRD*+ ; read into TABLAT and increment
MOVF TABLAT, W ; get data
MOVWF WORD_ODD

这是我为了使汇编代码正常工作所做的修改。我怀疑 TBLRD * + 导致语法错误。

 _asm

MOVLW CODE_ADDR_UPPER 
MOVWF TBLPTRU 
MOVLW CODE_ADDR_HIGH
MOVWF TBLPTRH
MOVLW CODE_ADDR_LOW
MOVWF TBLPTRL 
READ_WORD:
TBLRD*+ 
MOVF TABLAT, W 
MOVWF WORD_EVEN
TBLRD*+ 
MOVF TABLAT, W 
MOVWF WORD_ODD

_endasm 

我希望有人可以澄清'必须使用全文助记符进行表读/写'的含义以及可能导致构建错误的原因。

谢谢!

1 个答案:

答案 0 :(得分:1)

我必须仔细检查,但我相信你必须用助记符TBLRD*+替换TBLRDPOSTINC。我稍后会发布一个编辑进行确认。