From 0ff3d6454067cc1120b6ba6dad202fc87b2b8024 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Sat, 5 Dec 2020 01:36:09 -0800 Subject: [PATCH] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 696f70b..7dc448a 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ The `AxiStreamSource`, `AxiStreamSink`, and `AxiStreamMonitor` classes can be us To use these modules, import the one you need and connect it to the DUT: - from cocotbext.axi import AxiStreamSource, AxiStreamSink + from cocotbext.axi import AxiStreamSource, AxiStreamSink, AxiStreamMonitor axis_source = AxiStreamSource(dut, "s_axis", dut.clk, dut.rst) axis_sink = AxiStreamSink(dut, "m_axis", dut.clk, dut.rst)