From a57a44f83a4c27841683ec6b484ae312b5d160aa Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 10 Apr 2014 21:26:05 +0000 Subject: [PATCH] Fix docs, this is actually just 3 variables --HG-- branch : /fix-docs-this-is-actually-just-3-variabl-1397165148577 --- doc/source/manual/rtl.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/manual/rtl.rst b/doc/source/manual/rtl.rst index 1dbcc70a..c137302e 100644 --- a/doc/source/manual/rtl.rst +++ b/doc/source/manual/rtl.rst @@ -191,7 +191,7 @@ the :func:`StopSimulation()` exception to stop the simulation run. The test benc a small incrementer and a small number of patterns is a follows:: def testbench(): - count, enable, clock = [Signal(intbv(0)) for i in range(4)] + count, enable, clock = [Signal(intbv(0)) for i in range(3)] reset = ResetSignal(0, active=ACTIVE_LOW, async=True) inc_1 = Inc(count, enable, clock, reset, n=4)