编译汇编程序时,我正在使用一些ARM汇编程序指令。
这就是我正在做的事情:
GBLA count
count SETA 0
WHILE count <=1024
IF count = {50}
; Do something special here
ENDIF
count SETA count+1
; Repetitive code here
WEND
但是我收到错误消息: 错误:AA1198E:未知操作数。
我已尝试将IF语句添加到count之前,如果这样做了,但我得到了不同的错误。
不幸的是ARM documentation对此并不好(或者我不是很聪明,这很可能是嘿嘿)