From f2e84a5800223d974b06cdb6dd6e42492fcbb875 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 18 Sep 2019 10:45:38 +0200 Subject: [PATCH] soc/cores/timer: fix typo (thanks xobs) --- litex/soc/cores/timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/timer.py b/litex/soc/cores/timer.py index 7055254c..e13a76fd 100644 --- a/litex/soc/cores/timer.py +++ b/litex/soc/cores/timer.py @@ -19,7 +19,7 @@ class Timer(Module, AutoCSR): self._reload = CSRStorage(width, description= """Reload value when timer reaches 0. This register is used to create a Periodic timer and specify the timer's period in clock - cycles. For a One-Shot timer, this register need to be set to 0.""") + cycles. For a One-Shot timer, this register needs to be set to 0.""") self._en = CSRStorage(1, description= """Enable. Write 1 to enable/start the timer, 0 to disable the timer""") self._update_value = CSRStorage(1, description= -- 2.30.2