JMP <address> CALL <address>
that do not represent a specific opcode: generic jump and call.
These instructions will always evaluate to a jump or call, not necessarily
the shortest, that will reach the specified address.
JMP may assemble to SJMP, AJMP or LJMP, while CALL can only evaluate to
ACALL or LCALL. Note that the assembler decision may not be optimal. For
code addresses that are forward references, the assembler always generates
LJMP or LCALL respectively. However, for backward references this is a
powerful tool to reduce code size without extra trouble.
With the $PHILIPS control,
The rest of the 8051 instruction mnemonics is listed in Appendix D. Appendices I and J are containing tables of all 8051 instructions with their opcodes, mnemonics, arguments, lengths, affected flags and durations. The comprehensive example program DEMO.A51 provided shows all the 8051 instructions in a syntactical context.
For detailed information on the Intel
All