Search results

  1. V

    verilog code need help

    ok my effort for design 4 bit processor 1)4 bit ALU 2)3:8 decoder 3) 4 bit A register ( data register ) 4) 4 bit B register (data register ) 5) 4 bit Instruction register 6)4 bit address register 7)8 bit counter 8)4 bit data bus 9)4 bit address bus 10)4 bit control bus Instruction is fetch and...
  2. V

    verilog code need help

    ALU perform following function AND logic OR logic NAND logic NOR logic X or logic X nor logic addition subtraction I am not going to design for specific purpose don't mind I made some simple specification for 4 bit processor specification for 4 bit processor 1)4 bit ALU 2)3:8 decoder 3) 4...
  3. V

    verilog code need help

    I have made sample code for 4 bit ALU and 3 to 8 decoder to make 4 bit processor . as designer we can design anything so I have started to design processor with two function ALU and decoder specification 4 bit processor 4 bit ALU 3 to 8 decoder 4 bit ALU verilog code Module alu...
  4. V

    N Bit ALU

    thanks for looking thanks for looking this post 4 bit processor component for 4 bit processor 1)4 bit ALU 2)3:8 decoder now If I want to make 8 bit processor then I think I need following things ( I am not sure ? 1)8 bit ALU 2)3:8 decoder
  5. V

    N Bit ALU

    I already mention function for ALU in my previous post ok look at this ALU perform following function AND logic OR logic NAND logic NOR logic X or logic X nor logic addition subtraction
  6. V

    N Bit ALU

    please some one check out this table. and tell me its correct or wrong ? I read in every blog that processor made with ALU and control unit. so after some reading I made this table. i am not going to make for company. I am just going to make specific one for my basic understanding
  7. V

    N Bit ALU

    for 4 Bit ALU 4 bit ALU 4 bit input A 4 bit input B S2 S1 S0 F 0 0 0 F= A and B 0 0 1 F= A or B 0 1 0 F= A Nand B 0 1 1 F= A nor B 1 0 0 F= A Xor B 1 0 1 F=A X nor B 1...
  8. V

    N Bit ALU

    yes I read and I made following for example function F= A&b (A and B logic ) A B F 0 0 0 0 1 0 1 0 0 1 1 1
  9. V

    N Bit ALU

    I am not sure what function are you talking ? lets see for 2 bit ALU same for 2 bit ALU 2 bit ALU 2 bit input A 2 bit input B 2 bit output F S0 S1 F 0 0 F= addition 0 1 F= subtraction 1 0 F= A and B 1 1 F= A or B function F= A&b (A and B...
  10. V

    N Bit ALU

    how to make N bit ALU ALU has two input word A, B N bit ALU An input Bn input F input example 1 bit alu 0+1=1 2 bit ALU 01+10=11 4 bit ALU 0101+1010=1111 example - 1 bit ALU 1 bit input A 1 bit input B 1 bit output F s ALU performance 0 F= addition 1 F= A and B same...
  11. V

    machine language to assembly language

    Its very hard for me I tried more but I did not learn concept of ram location how does cpu use ram location ? what instruction is used to access ram location ?
  12. V

    machine language to assembly language

    1 0000 ORG 0H 2 0000 Start: 3 0000 74 05 MOV A, #5H 4 0002 79 04 MOV R1, #4H 5 0004 29 ADD A,R1 6 0005 I understood about rom address can you explain what is ram...
  13. V

    machine language to assembly language

    I think its ram address (The 0000, 0002, 0004 etc are the memory addresses) where data will be store how we access memory and which instruction we use that determine weather we are accessing Internal rom , Internal Ram or SFR
  14. V

    machine language to assembly language

    Q1 look at post #3 this is temporary example I have taken for understanding Is it true ? Q2 look at this test code 1 0000 ORG 0H 2 0000 Start: 3 0000 74 05 MOV A, #5H 4 0002 79 04 MOV R1...
  15. V

    machine language to assembly language

    I am talking about 8051 controller assembler convert assembly code into machine code suppose we have sequence 1000 101 10 0110 suppose ( symbolic form ) Mov (1000) , A (101), #(10) , 6(0110) each assembly symbol converted into machine language now we write program in assembly mov A, # 6 and...
  16. V

    machine language to assembly language

    everyone say start with basics learn some basic things so my another effort for learning about micro controller I know about basic gates like AND, NOT and OR, we can make following circuits with help of basic gates Addition Subtraction Division Multiplication Logical AND Shift Left Shift...
  17. V

    power supply circuit

    please someone check out this value and tell me its correct or wrong
  18. V

    power supply circuit

    transformer with load we know following things primary voltage Vp= 220 RMS ac secondary voltage Vs= 44 volt Rms Ac primary turns Ns = 5 secondary turns Np= 1 primary current Ip = 0.176 amp rms Ac secondary current Is = 0.88 Amp rms Ac transformer connected with diode and load (given data )...
  19. V

    power supply circuit

    can someone please tell me how to determine dc output voltage ?
  20. V

    power supply circuit

    I am little bit confused about dc current and dc voltage how to determine dc output voltage? then I want to add capacitor (filter circuit)
Top