Instruction manual
Note
Exercise care when using this address function. The options that may be
accepted apply to the current address while the options from the previous
command is used for the indirect reference.
Example 4 shows how the options are interpreted.
Example 4 Indirect Addressing
>>> DEPOSIT R0 200000
! The value 200000 is stored directly in R0.
>>> DEPOSIT -PM @R0 200000
! The value 200000 is stored directly into the address pointed to
! by R0. Note the use of the -PM option, which tells the parser
! that the value in R0 should be treated as a physical reference.
! The options at the end of this are set to LONGWORD - PHYSICAL
>>> DEPOSIT R0 20000000
>>> DEPOSIT -VM @R0 20000000
! The value 20000000 is stored directly into the address pointed
! to by R0. Note the use of the -VM option, which tells the parser
! to treat the value stored in R0 as a virtual reference.
! The options at the end of this are set to LONGWORD - VIRTUAL.
Console 16–11