Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ project:
tiles: "1x2" # 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_bfcpu"

# List your project's source files here.
# Source files must be in ./src and you must list each source file separately, one per line.
Expand All @@ -23,7 +23,7 @@ project:
# This section is for the datasheet/website. Use descriptive names (e.g., RX, TX, MOSI, SCL, SEG_A, etc.).
pinout:
# Inputs
ui[0]: ""
ui[0]: "fill out later" # fill these out later
ui[1]: ""
ui[2]: ""
ui[3]: ""
Expand All @@ -33,7 +33,7 @@ pinout:
ui[7]: ""

# Outputs
uo[0]: ""
uo[0]: "fill out later"
uo[1]: ""
uo[2]: ""
uo[3]: ""
Expand All @@ -43,7 +43,7 @@ pinout:
uo[7]: ""

# Bidirectional pins
uio[0]: ""
uio[0]: "fill out later"
uio[1]: ""
uio[2]: ""
uio[3]: ""
Expand Down
1 change: 0 additions & 1 deletion src/project.sv

This file was deleted.

2 changes: 1 addition & 1 deletion src/project.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_bfcpu (
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_bfcpu user_project (
.ui_in (ui_in), // Dedicated inputs
.uo_out (uo_out), // Dedicated outputs
.uio_in (uio_in), // IOs: Input path
Expand Down
5 changes: 4 additions & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ async def test_project(dut):

# The following assersion is just an example of how to check the output values.
# Change it to match the actual expected output of your module:
assert dut.uo_out.value == 50
# assert dut.uo_out.value == 50

# Keep testing the module by changing the input values, waiting for
# one or more clock cycles, and asserting the expected output values.

# just have it pass the test for now
cocotb.pass_test()
Loading