doc: do not inline examples as this never works with most Sphinx setups ...
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 10 Feb 2013 17:45:06 +0000 (18:45 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 10 Feb 2013 17:45:06 +0000 (18:45 +0100)
doc/dataflow.rst
doc/simulation.rst

index 6cf02edd1fd6f4ca4742fb48651b0a961fdedc75..8026c107046f90820db99f3a33c8c2acb9ce2bea 100644 (file)
@@ -185,7 +185,7 @@ The ``Token`` class contains the following items:
 * The name of the endpoint from which it is to be received, or to which it is to be transmitted. This value is not modified by the transaction.
 * A dictionary of values corresponding to the fields of the token. Fields that are lower-level records are represented by another dictionary. This item should be set to ``None`` (default) when receiving from a sink.
 
-See :ref:`dfsimexample` for an example demonstrating the use of these actors.
+See ``dataflow.py`` in the examples folder of the Migen sources for a demonstration of the use of these actors.
 
 Arithmetic and logic actors
 ===========================
index ce0a6d91303e5572aa2776ee05e6c1f8cc14aeed..9b11e8100ca09ce50d81d4b4ac86c27619941425 100644 (file)
@@ -131,38 +131,3 @@ The generic top-level object
 Migen comes with a ``migen.sim.generic.TopLevel`` object that implements the above behaviour. It should be usable in the majority of cases.
 
 The main parameters of its constructor are the output VCD file (default: ``None``) and the levels of hierarchy that must be present in the VCD (default: 1).
-
-Simulation examples
-*******************
-
-Most basic
-==========
-.. include:: ../examples/sim/basic1.py
-   :code: python
-
-A few more features
-===================
-.. include:: ../examples/sim/basic2.py
-   :code: python
-
-Memory access
-=============
-.. include:: ../examples/sim/memory.py
-   :code: python
-
-A FIR filter
-============
-.. include:: ../examples/sim/fir.py
-   :code: python
-   
-Abstract bus transactions
-=========================
-.. include:: ../examples/sim/abstract_transactions.py
-   :code: python
-
-.. _dfsimexample:
-   
-Dataflow simulation actors
-==========================
-.. include:: ../examples/sim/dataflow.py
-   :code: python