Verilog 3 Half Adder EDA PLAY GROUND

Поділитися
Вставка
  • Опубліковано 31 жов 2024

КОМЕНТАРІ • 24

  • @savanprajapati5322
    @savanprajapati5322 3 роки тому

    Awesome explanation brother .... Thanks for making this video❤️❤️👌👌👌

    • @dvrblacktech
      @dvrblacktech  3 роки тому

      For a free course on basics on verilog on sparten6 as well as eda, u can join here:
      dvrblacktech.pythonanywhere.com/Courses/verilog-handson-with-sparten-6-mini-course

  • @pranjalpratyush5133
    @pranjalpratyush5133 3 роки тому

    Awesome. You saved my assignment 😎

    • @dvrblacktech
      @dvrblacktech  3 роки тому

      For a free course on basics on verilog on sparten6 as well as eda, u can join here:
      dvrblacktech.pythonanywhere.com/Courses/verilog-handson-with-sparten-6-mini-course

  • @Digital_Buddy_28
    @Digital_Buddy_28 3 роки тому

    thank you bro
    your video is very useful

    • @dvrblacktech
      @dvrblacktech  3 роки тому

      For a free course on basics on verilog on sparten6 as well as eda, u can join here:
      dvrblacktech.pythonanywhere.com/Courses/verilog-handson-with-sparten-6-mini-course

  • @nitinprabhu291
    @nitinprabhu291 4 роки тому

    You are awesome dude 👌👌👌👌👌

  • @raguramsrikanth
    @raguramsrikanth 3 роки тому +2

    Hi sir your lecture is excellent.sir want i want front end vlsi document.tell how to download doc .plzz sir

    • @dvrblacktech
      @dvrblacktech  3 роки тому +1

      1. For verilog on sparten 6 FPGA
      dvrblacktech.pythonanywhere.com/Courses/verilog-handson-with-sparten-6-mini-course
      2. For basics of VLSI - analog design
      dvrblacktech.pythonanywhere.com/vlsi

  • @GreyX905
    @GreyX905 3 роки тому

    Hi rohith, do you know how to do 3 bit counter?

    • @dvrblacktech
      @dvrblacktech  3 роки тому +2

      // ROHIT D H
      // 3 bit counter
      module counter(
      input clk,
      input rst,
      output reg[2:0]count
      );
      always @(posedge clk)
      begin
      count

    • @GreyX905
      @GreyX905 3 роки тому

      Do you also know VHDL for a counter? Or do you do just verilog?

    • @dvrblacktech
      @dvrblacktech  3 роки тому +1

      Actually I don't have any code, just wrote in comment, vhdl I don't know much yet..I think u can get vhdl on google

    • @GreyX905
      @GreyX905 3 роки тому

      That's alright, thank you for replying

    • @limweihan2185
      @limweihan2185 3 роки тому

      @@dvrblacktech bravo , this code useful for the beginner

  • @mumbaikaladka6718
    @mumbaikaladka6718 2 роки тому

    Output is not coming sir

    • @dvrblacktech
      @dvrblacktech  2 роки тому

      Change the simulator on eda playground, make sure you clicked on show ep wave after simulation.
      Recently the simulator that I chooses in the left side list, is not working properly. So choose some other simulator tool and rerun.

  • @mumbaikaladka6718
    @mumbaikaladka6718 2 роки тому

    Can you plz make video on car parking system using fpga on eda playground

    • @dvrblacktech
      @dvrblacktech  2 роки тому

      On eda playground i guess its not possible to connect hardware and send code to FPGA. What you can do is, use 4 parking slots, for each slot attach one ir or ultrasonic sensor and connect one display to FPGA. Now in verilog code, simply read the input of all those 4 IR, sensors, if car is there is slot, ir will output 1, else 0, simply use if condition and display which slot is free or which slots are occupied..

  • @arvindsundarh7385
    @arvindsundarh7385 3 роки тому

    Can You send me the code for Full Adder?

    • @dvrblacktech
      @dvrblacktech  3 роки тому

      Full adder using 1 bit, a,b,cin,sum,carry
      www.edaplayground.com/x/Vy9z
      Full adder using 2 half adders
      www.edaplayground.com/x/hMaX

  • @mumbaikaladka6718
    @mumbaikaladka6718 2 роки тому

    Plz share the code sir

    • @dvrblacktech
      @dvrblacktech  2 роки тому

      www.edaplayground.com/x/udJS
      (Sorry for delay)