summaryrefslogtreecommitdiff
path: root/tb/top/test_smp.py
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-10-06 21:41:18 -0600
committerAlejandro Soto <alejandro@34project.org>2023-10-06 21:41:18 -0600
commit9eea5f94a6d955390f91188dd02c1c24a3fa955b (patch)
treec714e12eab00624f4d2d15b5a01b0b6a82a12b67 /tb/top/test_smp.py
parent289eea6e2e6a0988a13b757aec46804b7c4a04f8 (diff)
tb/top/test_smp: fix unawaited object
Diffstat (limited to 'tb/top/test_smp.py')
-rw-r--r--tb/top/test_smp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tb/top/test_smp.py b/tb/top/test_smp.py
index c70b76b..5960373 100644
--- a/tb/top/test_smp.py
+++ b/tb/top/test_smp.py
@@ -7,7 +7,7 @@ from tb.models import CorePaceModel, SmpModel
@cocotb.test()
async def reset(dut):
- cocotb.start(Clock(dut.clk, 2).start())
+ await cocotb.start(Clock(dut.clk, 2).start())
dut.rst_n.value = 1
await Timer(1)