From 4eca9abba25466f049e84acfef7040793a4298ce Mon Sep 17 00:00:00 2001 From: Abraham Gonzalez Date: Sat, 28 Sep 2019 14:28:31 -0700 Subject: [PATCH] Update docs/Advanced-Concepts/Top-Testharness.rst [ci skip] Co-Authored-By: alonamid --- docs/Advanced-Concepts/Top-Testharness.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Advanced-Concepts/Top-Testharness.rst b/docs/Advanced-Concepts/Top-Testharness.rst index c83e99c7..a0f7f775 100644 --- a/docs/Advanced-Concepts/Top-Testharness.rst +++ b/docs/Advanced-Concepts/Top-Testharness.rst @@ -80,7 +80,7 @@ instantiates a TileLink GPIO node, and connects it to the proper buses. If we look at the ``WithGPIOTop`` mixin in the ``ConfigMixins.scala`` file, we see that adding this mixin to the top-level Config overrides the ``BuildTop`` key with a custom function that both instantiates the custom Top, and drives all the GPIO pins. -When the ``TestHarness`` looksup the ``BuildTop`` key, this function will run and perform this wiring, and then return the Top module. +When the ``TestHarness`` looks up the ``BuildTop`` key, this function will run and perform the specified wiring, and then return the Top module. TestDriver -------------------------