Voting Machine in Verilog (with code) | Verilog project | XILINX | EDA Playground

  Рет қаралды 60,446

Arjun Narula

Arjun Narula

Күн бұрын

Пікірлер: 99
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Please find the code in the link description. Any suggestions or queries are most welcomed. PLEASE SUBSCRIBE TO THE CHANNEL. Let's aim for 450 SUBSCRIBERS!! Other Projects- ►Traffic Light Controller in Verilog - kzbin.info/www/bejne/j6Wan6Jsp9x2jM0 ►Round Robin Arbiter in Verilog - kzbin.info/www/bejne/jmfSe6Ftp55gbtU ►Vedic Multiplier in Verilog - kzbin.info/www/bejne/bH6Wn6yvhsujfrc ►Clock with Alarm in Verilog - kzbin.info/www/bejne/poXOYntrZcprmKs ►Washing Machine in Verilog - kzbin.info/www/bejne/n3LSmmygid-rmas ►N bit Multiplier in Verilog - kzbin.info/www/bejne/op7ddJeua8yemrc ►PWM Shift Register in Verilog - kzbin.info/www/bejne/hqucpIOcobCjjsU ►Vending Machine in Verilog - kzbin.info/www/bejne/qnvGYZWid6mFsNE ►Hexadecimal Keypad Scanner in Verilog - kzbin.info/www/bejne/j2LGoWWhrNSma68 ►RAM - ROM Design in Verilog - kzbin.info/www/bejne/o2Kbiohvrc94irc
@RahulKumar-oz2mc
@RahulKumar-oz2mc 2 жыл бұрын
There is no link in description for code. Pls.
@satyajeetnirmal7677
@satyajeetnirmal7677 2 жыл бұрын
Sir where is link for the code?
@kavyareyya934
@kavyareyya934 Жыл бұрын
There is no link for voting machine project
@vineethshirurmath8509
@vineethshirurmath8509 Жыл бұрын
For the people like who are confused in the button control module with if(button & counter
@ishajain949
@ishajain949 2 жыл бұрын
Great Project and Explanation Harman ✨
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Indeed, Great job Harman!! Thanks for watching the video Isha!!
@diwanshi6669
@diwanshi6669 2 жыл бұрын
Nice project and great explanation Keep it up guys💥💥
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks Diwanshi!!
@yuganshibharti3892
@yuganshibharti3892 2 жыл бұрын
Wonderful project Harman!! 💥💥 Good work Arjun!!
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Yuganshi!!
@parashgoswami7561
@parashgoswami7561 2 жыл бұрын
Great explanation Harman 🔥🔥
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Indeed, Great job Harman!! Thanks for watching the video Parash!
@bagaspermana88
@bagaspermana88 Жыл бұрын
I support this channel to produce more FPGA Projects, will appreciate it if you could do some machine learning implementation related to the project ( like Q learning) :)
@arshiyagarg9882
@arshiyagarg9882 2 жыл бұрын
Nice project with great explanation 💯🌟
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Glad you liked it!!
@poojaagrawal4417
@poojaagrawal4417 2 жыл бұрын
Great job 👍 Keep progressing
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Pooja di!!
@yuktasachdeva1204
@yuktasachdeva1204 2 жыл бұрын
Waiting for this project 💥💫
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Hope you like it!
@yuktasachdeva7822
@yuktasachdeva7822 2 жыл бұрын
yes, it is amazing ✨🎉🌈
@ritikgupta8478
@ritikgupta8478 2 жыл бұрын
Nice project and great explanation 💯💯
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thank you Ritik!!
@abhirambhaskaran6010
@abhirambhaskaran6010 8 ай бұрын
there is no code in description can you please send it
@Desi_Odyssey
@Desi_Odyssey 2 жыл бұрын
Mast ek dum 👌
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, didi!!
@raeleenkanda8270
@raeleenkanda8270 2 жыл бұрын
Great one 🌟🌟
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Raeleen!
@harmansaini9481
@harmansaini9481 2 жыл бұрын
Great work you guys!🔥
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Harman!!
@atushgoel7823
@atushgoel7823 2 жыл бұрын
Mast ek dum🔥
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Atush!!
@akrh9177
@akrh9177 Жыл бұрын
Thank you, sir, for providing such great and wonderful knowledge to everyone.
@kushagravijan7290
@kushagravijan7290 2 жыл бұрын
Great explaination 🤩
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Glad you liked it Kushagra!!
@fevilpatel8457
@fevilpatel8457 9 ай бұрын
insted of this code can we use this one "" module vm( input clk, input rst, input button_1, input button_2, input null, output reg led, output reg [2:0]ctr1, output reg [2:0]ctr2, output reg [2:0]ctr3 ); initial begin ctr1=0;ctr2=0;ctr3=0; end always @(posedge clk or negedge clk) begin if(rst) begin ctr1=0;ctr2=0;ctr3=0; end else begin if(button_1) begin ctr1
@markettodayy
@markettodayy 2 жыл бұрын
Can you guys please do AES encryption using Verilog🙏🙏
@avengers7223
@avengers7223 2 жыл бұрын
Yes would be really nice if you guys did it
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Will try to cover it in the coming videos.
@markettodayy
@markettodayy 2 жыл бұрын
@@ArjunNarula1122 thank you so much, will be waiting!
@adityamehta4147
@adityamehta4147 2 жыл бұрын
Nice project, good going👏
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks for watching Aditya!!
@sanyamjain1617
@sanyamjain1617 2 жыл бұрын
Good job 🔥🔥👍👍
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thank you Sanyam!!
@durgaprasadudp1476
@durgaprasadudp1476 Жыл бұрын
Can you please provide the full test bench code for this program.
@mythri9123
@mythri9123 9 күн бұрын
Great explanation sir. It would be really helpful if you share the code with us since its unavailable in the link description.
@vimminarula5523
@vimminarula5523 2 жыл бұрын
Well done keep it up
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Mumma!!
@DarshanAchalkar
@DarshanAchalkar 4 ай бұрын
How I would use it in modelsim Ise simulator Can i combine the modules in one module only
@rezaulislam9176
@rezaulislam9176 2 жыл бұрын
Thank for nice presentation . Would you make a video series about image processing with verilog coding ?
@Coco123-rl6ll
@Coco123-rl6ll 2 ай бұрын
Can we do this in xilinx vivado
@baps24
@baps24 2 жыл бұрын
Can you help me to do one project in verilog on the topic ultrasound medical imaging
@snehithreddy5576
@snehithreddy5576 4 ай бұрын
How to display these projects on linkdin?
@vishnuep6582
@vishnuep6582 2 жыл бұрын
damn nice bro
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks, Vishnu!!
@adithyanu4830
@adithyanu4830 2 жыл бұрын
Will it work for spartan 6 fpga
@vaibhavgupta5339
@vaibhavgupta5339 2 жыл бұрын
Thanks bro,Can you make video on implementation of router in verilog.
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Sure Vaibhav, stay tuned.
@anandkumar-bd2ru
@anandkumar-bd2ru 2 жыл бұрын
great
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks!!!
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Also regarding your doubt of dot in code lines 206-219, there we are instantiating the main module (Port connection by name).
@anandkumar-bd2ru
@anandkumar-bd2ru 2 жыл бұрын
thanks
@mumbaikaladka6718
@mumbaikaladka6718 2 жыл бұрын
I need this code plz share
@sruthipinapati5851
@sruthipinapati5851 9 ай бұрын
Please give code in description
@kolabhavani3744
@kolabhavani3744 Ай бұрын
Where these codes are found
@saaho-m
@saaho-m Жыл бұрын
can u show me the rtl schematic diagram for this project
@madhupatnana3634
@madhupatnana3634 2 жыл бұрын
Very nice explanation....... please send code link
@sreelakshmis1736
@sreelakshmis1736 2 жыл бұрын
can u plz share the code ..it is not in description
@hashiramasenju9406
@hashiramasenju9406 2 жыл бұрын
Can u give the code in comment?
@adarshpanigrahi6935
@adarshpanigrahi6935 Жыл бұрын
What is dump. Vcd
@anumulaharshith5876
@anumulaharshith5876 2 жыл бұрын
Great project sir, can you plz share the code?
@noorshaikh2549
@noorshaikh2549 Жыл бұрын
Sir... Can u write simple verilog code for water level indicator.. Please sir
@08arunc90
@08arunc90 2 жыл бұрын
I wants code for voting machine sir Can you send me a link for this code sir
@ani_A602
@ani_A602 2 ай бұрын
in discription code is not available provide the code
@satyajeetnirmal7677
@satyajeetnirmal7677 2 жыл бұрын
Awesome Project ! Can you send the code in description pls
@429sahilahammadshaik2
@429sahilahammadshaik2 Жыл бұрын
I too need this code...can u plz share if available?
@harmanchawla33
@harmanchawla33 2 жыл бұрын
💥💥
@Coco123-rl6ll
@Coco123-rl6ll 2 ай бұрын
can you please provide the project code
@chaitanyagupta6668
@chaitanyagupta6668 2 жыл бұрын
Nice
@ArjunNarula1122
@ArjunNarula1122 2 жыл бұрын
Thanks!!
@shrivatsaparvatikar5423
@shrivatsaparvatikar5423 6 ай бұрын
code of voting machine?
@animeshchauhan3428
@animeshchauhan3428 Жыл бұрын
Code???
@GurunadhVana-z7e
@GurunadhVana-z7e Жыл бұрын
sir please share link of the code in description
@mumbaikaladka6718
@mumbaikaladka6718 2 жыл бұрын
Can you share the code plz
@Gateprep2024
@Gateprep2024 5 ай бұрын
where is the code link
@pavansaikumar.m5653
@pavansaikumar.m5653 7 ай бұрын
Sir, Could you please provide SPI and I2C projects.
@MasterAnime-ps3yx
@MasterAnime-ps3yx 8 ай бұрын
where is the code?
@virenjagwani2703
@virenjagwani2703 2 жыл бұрын
Please post the code link
@hgameryt6151
@hgameryt6151 Жыл бұрын
Cant find the code but the project is extrodonary bro
@Siddesh_dhurat
@Siddesh_dhurat 2 жыл бұрын
Ye fpga hain kya ... Plzz reply
@varalakshmirathod3768
@varalakshmirathod3768 4 ай бұрын
please give the code bro
@MichaelJohnson-tj4kx
@MichaelJohnson-tj4kx 9 ай бұрын
Source code?
@lalitsingh4-yearb.tech.ele432
@lalitsingh4-yearb.tech.ele432 Жыл бұрын
also share the code pls
@avinsony10
@avinsony10 Жыл бұрын
sound is very low
@pranav_dance
@pranav_dance 6 ай бұрын
Code pls
@sohamdas7775
@sohamdas7775 2 жыл бұрын
Voice very low
@saibabuatmala9521
@saibabuatmala9521 2 жыл бұрын
bro how can we contact you?
@kavya563
@kavya563 7 ай бұрын
Could u please send the code
@atikpathan9693
@atikpathan9693 6 ай бұрын
Code??
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
The best way to start learning Verilog
14:50
Visual Electric
Рет қаралды 150 М.
RAM and ROM design in Verilog | Verilog Project | EDA Playground
19:35
The Genius Way Computers Multiply Big Numbers
22:04
PurpleMind
Рет қаралды 194 М.
КАК УСТРОЕН TCP/IP?
31:32
Alek OS
Рет қаралды 259 М.
Verilog, FPGA, Serial Com: Overview + Example
55:27
hhp3
Рет қаралды 11 М.
Hello world video using Xilinx Zynq, Vivado 2020, and Vitis
22:34