diff --git a/docs/info.md b/docs/info.md index ce1f04c..2da2843 100644 --- a/docs/info.md +++ b/docs/info.md @@ -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 diff --git a/info.yaml b/info.yaml index 50bb751..c35371a 100644 --- a/info.yaml +++ b/info.yaml @@ -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: diff --git a/src/project.v b/src/project_adder8.v similarity index 96% rename from src/project.v rename to src/project_adder8.v index cd6f740..ead1b06 100644 --- a/src/project.v +++ b/src/project_adder8.v @@ -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 diff --git a/test/tb.v b/test/tb.v index 2fc848c..e1e2e60 100644 --- a/test/tb.v +++ b/test/tb.v @@ -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