RegMove.l |
Previous Next |
RegMove.l <Source>, <Destination>
|
Part
|
Description
|
<Source>
|
Required. The source can be a BASIC variable or a 68K register.
68K registers are d0 to d7 and a0 to a7.
|
<Destination>
|
Required. The destination can be a BASIC variable or a 68K
register. 68K registers are d0 to d7 and a0 to a7.
|
a& = 0
b& = 9
Print "Before: "; a&
RegMove.l b&, d0
RegMove.l d0, a&
Print "After: "; a&
|