From 2f45d4640bcb79cd423bbcefbfed253a4cb90563 Mon Sep 17 00:00:00 2001 From: Yann Sionneau Date: Wed, 22 Apr 2015 14:31:42 +0200 Subject: [PATCH] doc: fix warnings during doc build --- doc/api.rst | 12 +++--- doc/fhdl.rst | 102 +++++++++++++++++++++++++-------------------------- 2 files changed, 57 insertions(+), 57 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index 1181773cf..83c5aa0c5 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -2,42 +2,42 @@ migen API Documentation ======================= :mod:`fhdl.structure` Module ------------------------------- +---------------------------- .. automodule:: migen.fhdl.structure :members: :show-inheritance: :mod:`fhdl.bitcontainer` Module ------------------------------- +------------------------------- .. automodule:: migen.fhdl.bitcontainer :members: :show-inheritance: :mod:`genlib.fifo` Module ------------------------------- +------------------------- .. automodule:: migen.genlib.fifo :members: :show-inheritance: :mod:`genlib.coding` Module ------------------------------- +--------------------------- .. automodule:: migen.genlib.coding :members: :show-inheritance: :mod:`genlib.cordic` Module ------------------------------- +--------------------------- .. automodule:: migen.genlib.cordic :members: :show-inheritance: :mod:`genlib.sort` Module ------------------------------- +------------------------- .. automodule:: migen.genlib.sort :members: diff --git a/doc/fhdl.rst b/doc/fhdl.rst index d6253d1a6..9eec89dfe 100644 --- a/doc/fhdl.rst +++ b/doc/fhdl.rst @@ -260,57 +260,57 @@ Summary of special attributes .. table:: Summary of special attributes -+--------------------------------------------+--------------------------------------------------------------+ -| Syntax | Action | -+============================================+==============================================================+ -| self.comb += stmt | Add combinatorial statement to current module. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.comb += stmtA, stmtB | Add combinatorial statements A and B to current module. | -| | | -| self.comb += [stmtA, stmtB] | | -+--------------------------------------------+--------------------------------------------------------------+ -| self.sync += stmt | Add synchronous statement to current module, in default | -| | clock domain sys. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.sync.foo += stmt | Add synchronous statement to current module, in clock domain | -| | foo. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.sync.foo += stmtA, stmtB | Add synchronous statements A and B to current module, in | -| | clock domain foo. | -| self.sync.foo += [stmtA, stmtB] | | -+--------------------------------------------+--------------------------------------------------------------+ -| self.submodules += mod | Add anonymous submodule to current module. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.submodules += modA, modB | Add anonymous submodules A and B to current module. | -| | | -| self.submodules += [modA, modB] | | -+--------------------------------------------+--------------------------------------------------------------+ -| self.submodules.bar = mod | Add submodule named bar to current module. The submodule can | -| | then be accessed using self.bar. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.specials += spe | Add anonymous special to current module. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.specials += speA, speB | Add anonymous specials A and B to current module. | -| | | -| self.specials += [speA, speB] | | -+--------------------------------------------+--------------------------------------------------------------+ -| self.specials.bar = spe | Add special named bar to current module. The special can | -| | then be accessed using self.bar. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.clock_domains += cd | Add clock domain to current module. | -+--------------------------------------------+--------------------------------------------------------------+ -| self.clock_domains += cdA, cdB | Add clock domains A and B to current module. | -| | | -| self.clock_domains += [cdA, cdB] | | -+--------------------------------------------+--------------------------------------------------------------+ -| self.clock_domains.pix = ClockDomain() | Create and add clock domain pix to current module. The clock | -| | domain name is pix in all cases. It can be accessed using | -| self.clock_domains._pix = ClockDomain() | self.pix, self._pix, self.cd_pix and self._cd_pix, | -| | respectively. | -| self.clock_domains.cd_pix = ClockDomain() | | -| | | -| self.clock_domains._cd_pix = ClockDomain() | | -+--------------------------------------------+--------------------------------------------------------------+ + +--------------------------------------------+--------------------------------------------------------------+ + | Syntax | Action | + +============================================+==============================================================+ + | self.comb += stmt | Add combinatorial statement to current module. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.comb += stmtA, stmtB | Add combinatorial statements A and B to current module. | + | | | + | self.comb += [stmtA, stmtB] | | + +--------------------------------------------+--------------------------------------------------------------+ + | self.sync += stmt | Add synchronous statement to current module, in default | + | | clock domain sys. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.sync.foo += stmt | Add synchronous statement to current module, in clock domain | + | | foo. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.sync.foo += stmtA, stmtB | Add synchronous statements A and B to current module, in | + | | clock domain foo. | + | self.sync.foo += [stmtA, stmtB] | | + +--------------------------------------------+--------------------------------------------------------------+ + | self.submodules += mod | Add anonymous submodule to current module. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.submodules += modA, modB | Add anonymous submodules A and B to current module. | + | | | + | self.submodules += [modA, modB] | | + +--------------------------------------------+--------------------------------------------------------------+ + | self.submodules.bar = mod | Add submodule named bar to current module. The submodule can | + | | then be accessed using self.bar. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.specials += spe | Add anonymous special to current module. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.specials += speA, speB | Add anonymous specials A and B to current module. | + | | | + | self.specials += [speA, speB] | | + +--------------------------------------------+--------------------------------------------------------------+ + | self.specials.bar = spe | Add special named bar to current module. The special can | + | | then be accessed using self.bar. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.clock_domains += cd | Add clock domain to current module. | + +--------------------------------------------+--------------------------------------------------------------+ + | self.clock_domains += cdA, cdB | Add clock domains A and B to current module. | + | | | + | self.clock_domains += [cdA, cdB] | | + +--------------------------------------------+--------------------------------------------------------------+ + | self.clock_domains.pix = ClockDomain() | Create and add clock domain pix to current module. The clock | + | | domain name is pix in all cases. It can be accessed using | + | self.clock_domains._pix = ClockDomain() | self.pix, self._pix, self.cd_pix and self._cd_pix, | + | | respectively. | + | self.clock_domains.cd_pix = ClockDomain() | | + | | | + | self.clock_domains._cd_pix = ClockDomain() | | + +--------------------------------------------+--------------------------------------------------------------+ Clock domain management =======================