Showing posts with label PUSH. Show all posts
Showing posts with label PUSH. Show all posts

Thursday, April 29

TOP TEN INSTRUCTIONS OF 8051 FOR COMPETITIVE EXAMS

This list includes some of the instructions of 8051 which you should not miss out while preparing for any kind of exams

  1. MUL AB

    Multiplies the unsigned 8-bit integer in the accumulator and the unsigned 8-bit integer in the B register producing a 16-bit product.
    A<--The low-order byte of the product
    B<--The high-order byte of the product
    OV flag is set if the product is greater than 255 (0FFh), otherwise it is cleared.
    The carry flag is always cleared.
    Similarly there is DIV AB in which quotient is stored in A and remainder in B register