This load instruction moves data.
Synopsis
load(type.dst,type.src)
Description
The load instruction converts the source value to the data type of the destination and stores it at the destination.
Example
In the following example, the 4-byte value defined by the name NSTKS is put in r.1. The value 3 is written to r.2.
load(r.1,NSTKS)
load(r.2,3)