Coldfire Assembly

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Coldfire Assembly

986件の閲覧回数
c393
Contributor II

What does the % symbol represent in the following statement?

 

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

ラベル(1)
0 件の賞賛
返信
1 返信

581件の閲覧回数
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 件の賞賛
返信