代写EECS 112L Introduction to Digital Logic Design Lab调试Haskell程序

Introduction to Digital Logic Design Lab

EECS 112L

1    Install The Vivado Design Suite

Vivado is a software produced by Xilinx for synthesis and analysis of HDL designs.  The WebPack version of Vivado is free and You can download and install it from here:

https://www.xilinx.com/support/download.html

1.1    Download the Vivado Design Suite

Select the appropriate version for your laptop operating system.  There is no official Vivado for the Mac. If you  are using Mac you need to install Vivado on  a virtual machine or use Vivado on one of UCI servers.

 Vivado on Windows

–  Example: Choose ” Xilinx Unified Installer 2020.2: Windows Self Extracting Web Installer” to download the Vivado Design Suite for Windows machine.  (This is the latest version available but all 2017, 2018, and 2019 versions are ok)

 Vivado on Linux

–  Choose ”Xilinx Unified Installer 2020.2:  Linux  Self Extracting Web Installer” to download the Vivado Design Suite 2020.2 for Linux machine.

 Vivado on Mac

  Run Windows or Linux on a Virtual Machine

*  Download either Windows or Linux web Installer

–  Use Vivado on EECS server.  The current version on the EECS server is 2017.1 which is ok for the purpose of this course

 

You need a Xilinx account to download the tool.  Register with your UCI net ID and sign in to download the Xilinx toolchain.  This would be a file around 248MB (for windows) which will both download and install the tool for you.

 

1.2    Install the Vivado Design Suite

This section explains the installation process for all platforms for the Vivado Design Suite. Couple points before extracting and installing the tool:

•  Make sure your machine can support this toolchain. You can check this on Xilinx website.

•  Make sure that you have enough space on your system for this tool.  It might take up to a few Gigabytes

Now, let’s start the installer you have downloaded in the previous step.  After you click on the installer it will extract the tool and prepare it for the installation.


To install Vivado on Linux: • Open a terminal and run: $chmod +x Xilinx Unified 2020.2 1118 1232 Lin64.bin $sudo ./Xilinx Unified 2020.2 1118 1232 Lin64.bin • Vivado Installer window will appear. The instalation process is same as windows. • After installing Vivado, open a terminal and type these two commands to run the software : $source /opt/Xilinx/Vivado/2020.2/settings64.sh $vivado


Click Next.

 

A window will pop up asking about your installation type and your Xilinx account.  You can use the  account you have made at the beginning on the Xilinx website.  Select the ”download and install now” option.  Click Next.

 

1.3    License and Edition Selection

In the next step, you would select which edition of the Vivado tool you want to install.  For now, we can install the webpack version which doesnt require any license.

This window asks you about the tool you want to install.  Select Vivado and click Next.

 

We are going to use the free version so, here select ”Vivado HL WebPack” .

 

Here the default options are ok.  Click Next.

 

Accept the licencse agreement and selest all ”I Agree” boxes.

 

Select the installation directory.  Click Next.

 

Click Install.

 

1.4    Download and installation

The final section of the installation will start to download the full image of the Vivado tool which even with a fast internet connection will take quite a long time.  Try to do this part before the class.  After downloading the full image the installation process will begin.


 


Use the Vivado software on the EECS server: Note : The most updated version Vivado on the server is 2017.1 which is still enough for this course. • Connect to one of the Servers – zuma.eecs.uci.edu – laguna.eecs.uci.edu – crystalcove.eecs.uci.edu – bondi.eecs.uci.edu • Open a terminal and loging with your username $ssh -X -Y UserName@ServerName • Type this command in the terminal to setup Vivado 2017.1 $source /ecelib/eceware/xilinx/Vivado/2017.1/settings64.csh • Type vivado to lunch the application $vivado


2    Using The Vivado Design Suite

Open Vivado from your desktop.


Select Create Project.

 

Click next.

 

Your new project needs  a name,  an  address  (location on your computer),  and  a collection of design source codes.  This new window asks you to choose a name for your project, and specify the directory that you want to save your project in.

 

Vivado Naming Conventions: Project names and source file names must start with a letter (A − Z, a − z) and must contain only alphanumeric characters (A-Z, a-z, 0-9) and underscores( ).

This new window asks you to determine the type of your project.  Select ”RTL Project” in the Project Type form.  Select ”Do not specify sources at this time” (we will talk about this later).  Click Next.

 

Note: You can define different types of projects in Vivado. • RTL Project - RTL to Hardware Validation – Import RTL and IP to process design all the way to hardware – Standalone IP - Create reusable preconfigured IP module – Device exploration - Empty project to examine device resources • Post-synthesis Project Netlist to Hardware Validation – Third Party synthesis • I/O Planning Project Early I/O Exploration and Assignment – Create I/O port manually or import CSV, RTL, or XDC – Can migrate to RTL Project • Imported Project - Migrate Project from Synplify, XST, or ISE Project – Imports sources and compilation order – No synthesis or implementation result imported – No tool setting migrated • Example project – Using Vivado examples

In the Default Part dialog box, you should select the family and part number of the FPGA you want to implement your code on.  Since in this course we are not going to work with any FPGAs, you may skip this step and click Next.

 

Review the project summary in the New Project Summary dialog box before clicking Finish to create the project.

 

You see diferent windows in the Vivado software: Flow Navigator, Sources, Project summary, and etc..

 

The Project summary will give you the status of your project.

Throughout this course we are going to use Verilog language (or System Verilog) for hardware design. We can change the target language by going to the Project Summary window and click Edit. 

2.1    Design a Half Adder

We want to design a Half Adder. You see the block diagram below.

From the Flow Navigator window, choose Add Sources.  Select ”Add or create design sources” , click Next.

 

We want to create a new file so, click ”Create File” .

 

Define a name for your design.  Click Ok and Finish.

 

The next window asks you to define I/O ports for your module.  We are going to define them later in the code so skip this part and click Ok.

 

Now you see your new source file (HA) under Design Sources in the Sources window.

 

Double click on HA to open it.

 

Below you see the Verilog code for a Half Adder.  Copy and paste this code to the HA.v window. Code 1:  Half Adder.

module HA

(

A ,

B ,

Sum ,

Carry

) ;

input

input

output

output

assign

assign

A ;

B ;

Sum ;

Carry ;

Sum    = A   B ;   // bitwise xor

Carry   = A & B ;   // bitwise and

endmodule // half_adder

If you have a syntax error in this part, the line which contains error will be underlined by red color. Make sure to correct all of them.  Save your code.

 



热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图