From 7b00141a0cd94af37b844ea1965aa18ea8621518 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 6 Mar 2015 00:47:23 +0100 Subject: [PATCH] genlib/cordic: fix typos --- migen/genlib/cordic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migen/genlib/cordic.py b/migen/genlib/cordic.py index c6d134dd..6c430da3 100644 --- a/migen/genlib/cordic.py +++ b/migen/genlib/cordic.py @@ -22,7 +22,7 @@ class TwoQuadrantCordic(Module): mode has full throughput but uses many registers and has large latency. If `"combinatorial"`, there are no registers, throughput is maximal and latency is zero. `"pipelined"` and `"combinatorial"` use - the same number of sphifters and adders. + the same number of shifters and adders. The type of trigonometric/arithmetic function is determined by `cordic_mode` and `func_mode`. :math:`g` is the gain of the CORDIC. @@ -47,7 +47,7 @@ class TwoQuadrantCordic(Module): z_o = z_i + \\tan^{-1}(y_i/x_i) * rotate-hyperbolic: hyperbolic functions of `zi`. Used to - calculate hyprbolic functions, `sinh, cosh, tanh = cosh/sinh, + calculate hyperbolic functions, `sinh, cosh, tanh = cosh/sinh, exp = cosh + sinh`: .. math:: -- 2.30.2