RegMove.w |
Previous Next |
RegMove.w <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.w b, d0
RegMove.w d0, a
Print "After: "; a
|