Skip to content

Commit

Permalink
modify module and file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Electom committed Sep 1, 2024
1 parent 2566cdb commit 69fd12e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions docs/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ You can also include images in this folder and reference them in the markdown. E

## How it works

Explain how your project works
this is test to go through the flow
11111111111222

## How to test

Explain how to use your project
use the default settings
aadadsadas

## External hardware

List external hardware used in your project (e.g. PMOD, LED display, etc), if any
no
4 changes: 2 additions & 2 deletions info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ project:
tiles: "1x1" # Valid values: 1x1, 1x2, 2x2, 3x2, 4x2, 6x2 or 8x2

# Your top module name must start with "tt_um_". Make it unique by including your github username:
top_module: "tt_um_example"
top_module: "tt_um_example_adder8"

# List your project's source files here.
# Source files must be in ./src and you must list each source file separately, one per line.
# Don't forget to also update `PROJECT_SOURCES` in test/Makefile.
source_files:
- "project.v"
- "project_adder8.v"

# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
Expand Down
2 changes: 1 addition & 1 deletion src/project.v → src/project_adder8.v
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

`default_nettype none

module tt_um_example (
module tt_um_example_adder8 (
input wire [7:0] ui_in, // Dedicated inputs
output wire [7:0] uo_out, // Dedicated outputs
input wire [7:0] uio_in, // IOs: Input path
Expand Down
2 changes: 1 addition & 1 deletion test/tb.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module tb ();
wire [7:0] uio_oe;

// Replace tt_um_example with your module name:
tt_um_example user_project (
tt_um_example user_project_adder8 (

// Include power ports for the Gate Level test:
`ifdef GL_TEST
Expand Down

0 comments on commit 69fd12e

Please sign in to comment.