Coldfire Assembly

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Coldfire Assembly

1,004 次查看
c393
Contributor II

What does the % symbol represent in the following statement?

 

asm("move.l %D0,(%A1)")

标签 (1)
0 项奖励
回复
1 回复

599 次查看
admin
Specialist II

'%' means register in GNU assembler notation.

 

Instruction asm("move.l %D0,(%A1)") means:

Copy 32-bit content of register D0 to RAM by address, which is taken from register A1.

 

0 项奖励
回复