jump addr
Jump toaddr.The addrmust be even. The addrmust be in the range 0x200 to 0xFFE. The
addr expression must be relative tosome label.
Code generated:
0x0NNN,where NNN is the low12bits of addr.
jump addr,v0
Jump toaddr+v0. The addrmust be even. The addrmust be in the range 0x200 to 0xFFE. The
addr expression must be relative tosome label. It is a run-time error if the value of register v0 is
odd. It is a run-time error if addr+v0 is not in the range 0x2000 to 0xFFE.
Code generated: 0xBNNN,where NNN is the low12bits of addr.
call addr
Call subroutine at addr.The addrmust be even. The addrmust be in the range 0x200 to 0xFFE.
The addr expression must be relative toalabel. It is a run-time error if there are too many
subroutine calls, although you may safely assume at least 32 levels.
Code generated:
0x1NNN,where NNN is the low12bits of addr.