Recent content by prachi55

  1. P

    8085 microprocessor program

    can you please give me the whole program with output becoz i didn't get the answer.
  2. P

    8085 microprocessor program

    assume data in B register.B is 8 bit register.store number of 1's in H and 0's in L MVI C,08H MVI H,00H MOVA,B RAL JNC NEXT INR H DCR C JNZ UP MVI A,0H SUB H MOV L,A HLT
  3. P

    8085 microprocessor program

    how to write a program to count number of 1 and 0 bits in a register.