This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tutorials:creating_a_new_module [2019/07/12 18:22] jgoeders [Adding a New SystemVerilog File] |
tutorials:creating_a_new_module [2019/07/12 20:05] (current) jgoeders [Adding a Previously Created Module] |
||
---|---|---|---|
Line 3: | Line 3: | ||
This will show you how to add a new SystemVerilog source file to an existing project. You should make a new source file for every individual SystemVerilog module you make. | This will show you how to add a new SystemVerilog source file to an existing project. You should make a new source file for every individual SystemVerilog module you make. | ||
- | ==== Adding a New SystemVerilog File ==== | ||
+ | {{youtube>6jQm4zmJC7g?rel=0&noborder&1080x700}} | ||
- | {{youtube>6jQm4zmJC7g?rel=0&noborder&560x315}} | ||
- | - First, click **Add Sources**. This button is located in multiple places. Here are some of them: \\ {{:tutorials:creating_verilog_module:add_sources_1.png?nolink&300|}} {{:tutorials:creating_verilog_module:add_sources_2.png?nolink&300|}} {{:tutorials:creating_verilog_module:add_sources3.png?nolink&300|}} | + | ==== Adding a New SystemVerilog File ==== |
+ | |||
+ | |||
+ | - First, click **Add Sources**. This button is located in multiple places. (See video above) | ||
+ | /* Here are some of them: \\ {{:tutorials:creating_verilog_module:add_sources_1.png?nolink&300|}} {{:tutorials:creating_verilog_module:add_sources_2.png?nolink&300|}} {{:tutorials:creating_verilog_module:add_sources3.png?nolink&300|}} | ||
+ | */ | ||
- This will open the New Source Wizard. Click **Add or create design sources** then **next**. | - This will open the New Source Wizard. Click **Add or create design sources** then **next**. | ||
- | - Click **Create File**. \\ Change the File Type to **SystemVerilog** and make sure that the File Location is set to **Local to Project**. Enter a name for the file and click **OK**. \\ You can add more files before going to the next step if you want, but you can also do so any time later. Click **Finish** if when you're done adding files. | + | - Click **Create File**. \\ Change the File Type to **SystemVerilog** and choose where you want to save the new file. Enter a name for the file and click **OK**. \\ You can add more files before going to the next step if you want, but you can also do so any time later. Click **Finish** if when you're done adding files. |
- Now you can enter all the port information for each module you're adding. You can type it all in the prompt they give you, or just click **OK** (and then **Yes** if you didn't modify anything) to type it in yourself in the SystemVerilog file. When you're done, click **OK**. | - Now you can enter all the port information for each module you're adding. You can type it all in the prompt they give you, or just click **OK** (and then **Yes** if you didn't modify anything) to type it in yourself in the SystemVerilog file. When you're done, click **OK**. | ||
- Now your new source(s) will be available in the **sources** pane under **Design Sources**. (They will also be visible under **Simulation Sources**.) To edit one of your sources, find the file in the **sources** pane and double click it to open it. | - Now your new source(s) will be available in the **sources** pane under **Design Sources**. (They will also be visible under **Simulation Sources**.) To edit one of your sources, find the file in the **sources** pane and double click it to open it. | ||
Line 18: | Line 22: | ||
====Adding a Previously Created Module==== | ====Adding a Previously Created Module==== | ||
- | {{ :tutorials:creating_verilog_module:vivado_add_external_source.mp4| }} | + | /* {{ :tutorials:creating_verilog_module:vivado_add_external_source.mp4| }} */ |
- | This probably won't be useful in early labs but will be necessary in the later ones. This steps you through adding a source file that you have previously made (in a past lab probably). | + | This probably won't be useful in early labs but will be necessary in the later ones. This steps you through adding a source file that you have previously made (either in a past lab, or downloaded from the course website). |
- Go through steps 1 and 2 in the section above. | - Go through steps 1 and 2 in the section above. | ||
- Instead of clicking Create File, click **Add Files**. | - Instead of clicking Create File, click **Add Files**. | ||
- Browse to the location of the source file you wish to add. | - Browse to the location of the source file you wish to add. | ||
- | - If you created the source in Vivado, you'll have to navigate to that project's folder, then to the subfolder named **<project name>.srcs** then **sources_1** then **new**. | + | - If you created the source in Vivado, and saved the file internal to the project, you'll have to navigate to that project's folder, then to the subfolder named **<project name>.srcs** then **sources_1** then **new**. |
- Make sure the "Copy sources into project" checkbox is marked. | - Make sure the "Copy sources into project" checkbox is marked. | ||
- Click **Finish**. | - Click **Finish**. | ||
+ | /* | ||
==== Adding a file using TCL commands ==== | ==== Adding a file using TCL commands ==== | ||
Line 37: | Line 42: | ||
</code> | </code> | ||
+ | */ | ||
---- | ---- | ||