Search results

  1. V

    need help flip flop truth table

    ok if someone say draw the truth table for D flip flop so what is the truth table for D flip flop
  2. V

    need help flip flop truth table

    D clk | Qn ------------- 0 0 | ? the state of Q doesn't change when clock is 0 what will be Qn 0 or 1 and why 1 0 | ? the state of Q doesn't change when clock is 0 what will be Qn 0 or 1 and why 0 1 | ? the state of Q doesn't change when clock is 1 what will be Qn...
  3. V

    need help flip flop truth table

    i want to ask when clock is not rise what will be the Qn? D Clk Qn --------|------ 0 0 ? what will be 0 or 1 and why? 0 1 0 clock is raising from 0 to 1 so Qn will become as same as input D 1 0 ? what will be 0 or 1 and why ? 1 1 1 clock is raising from 0 to 1 so Qn will...
  4. V

    need help flip flop truth table

    D flip-flop positive edges clock input changes from 0 to 1 (rising edge) when clock is rise Qn will become as D input --------|------ D Clk Qn --------|------ 0 0 0 1 0 clock is raising from 0 to 1 so Qn will become as same as input D 1 0 1 1 1 clock is raising from 0 to 1 so...
  5. V

    need help flip flop truth table

    D flip-flop positive edges clock input changes from 0 to 1 (rising edge) when clock is rise what will be the Qn when clock is not rise what will be the Qn
  6. V

    need help flip flop truth table

    when the value of flip flop input are known how to find out the flip flop output I want to find out the output of d flip flop truth table --------|------ D Clk Qn| --------|------ 0 0 | 0 1 | 1 0 | 1 1 | how to find out Qn ?
  7. V

    what is difference between memory address and memory location

    I always confused what is mean of memory address and is mean of memory location I want to store four bit of data in to the memory of microcontroller I want to learn basic concept can anyone explain with example
  8. V

    Call instruction in assembly language

    I want to program 8051 in assembly language example; turn on LED wait turn off led SETB P0.1 ; turn on LED ACALL DELAY ; wait (here why we use call instruction ) CLR P0.1 ; turn of led I want to ask when I need to use subroutine
  9. V

    Call instruction in assembly language

    yas how to create subroutine in program
  10. V

    Call instruction in assembly language

    I want to create routine in assembly program but I don't have Idea when we need to create routine. why we need to create routine in program
  11. V

    need advice on microcontroller

    I have read many times that mcu make cpu, ports, clocks, converter and many other device but when i start to design microcontroller i am confused i don't know where to start i WANT TO DESIGN 8 BIT MICROCONTROLLER (8051)( FOR PAPER WORK) I have done some home work MCU=COMBINATION OF ICs...
  12. V

    assembly program for 8051

    this statement is correct or wrong ORG 00H ;Start from 000 MOV P0,#0FFH ; load value FFH in to P0 as input port MOV P1,#00H ; load value 00H into P1 as output port
  13. V

    assembly program for 8051

    ok i am trying to write code please correct me if i am wrong
  14. V

    assembly program for 8051

    thanks for reply i have read this, in this tutorial shown how to make port as input but not shown how to make port as output i have read some where to make port as input we write MOV A; #FFh MOV P1; A If it is correct how to make statement for output port
  15. V

    assembly program for 8051

    I want to learn how to write statement for input and output pins 2 LED connected to PINS P01 and P02 2 SWITCH connected to PINS P11 and P12 how to write statement for input and output pin in assembly
  16. V

    VLSI

    vlsi means chip design techniques you can fabricate many component on single chip
  17. V

    How assembly instruction convert into binary

    I know the assembler convert assembly instruction into machine code (MOV A, #10H convert in machine code like 01010101). But I want to know how assembler convert MOV A, #10H into 01010101?(internal process of hardware) How the hardware of microcontroller works with assembler?
  18. V

    Please clear my doubts in embedded system

    ok, we write a program for the microcontroller in assembly language, and high level language like c program but i wan't to ask when we use assembly code and when we use to need c code
  19. V

    Please clear my doubts in embedded system

    thanks steve for your reply. can you explain with example ?
  20. V

    Please clear my doubts in embedded system

    hi, I have just started to read about embedded system. i know, to make project i need microcontroller, software and other things. in software terms i am confused i don't know actually when and where compiler and assembler are used in embedded project? don't give definitions please explain...
Top