From 65c117a225f470bdb3f3b89ef1e2708d21581a87 Mon Sep 17 00:00:00 2001 From: Steve Jenson Date: Wed, 30 Oct 2024 10:55:42 -0700 Subject: [PATCH] start with TRST being high --- test/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.py b/test/test.py index 1116265..ceb1ba8 100644 --- a/test/test.py +++ b/test/test.py @@ -80,6 +80,8 @@ async def test_idcode(dut): dut.ui_in.value = 0 dut.uio_in.value = 0 dut.rst_n.value = 1 + # We start with TRST being high per the spec. + dut.ui_in.value = 0b0000_1000 await ClockCycles(dut.clk, 1) dut.rst_n.value = 0 await ClockCycles(dut.clk, 1)