110 likes | 289 Views
Learn to implement a full adder using Spartan-3E FPGA at a 3-day tutorial by IEEE student branch NIT Tiruchirappalli. Explore FPGA design flow, bit file generation, and FPGA configuration. Led by Ms. Vinitha Bobbili, M.Tech Scholar at NIT-T.
E N D
NATIONAL INSTITUTE OF TECHNOLOGY, TIRUCHIRAPPALLI – 620 015 (STB99061) 3-DAY TUTORIAL ON VERILOG HDL Organized by IEEE STUDENT BRANCH NIT TRICHY Implementation Of Full Adder Using Spartan-3E FPGA Ms. VinithaBobbili M.Tech Scholar NIT-T Department of Electronics and Communication Engineering
Full Addeer: module adder(s,cy,a,b,c_in ); input a,b,c_in; output s,cy; assign s=a^b^c_in; assign cy=(a^b)&c_in|(a&b); endmodule
bit file generation : Verilog code-> Synthesis -> ucf >implement design(translate,map,place&route) ->generate programming file.
Output : • a =b=c=0, s=cy=0 a=b=0 c=1 s=1 cy=0