aboutsummaryrefslogtreecommitdiffstats
path: root/templates/minimal.rst.tmpl
blob: 167aa14918d34b25385a97adced61f93c79d29d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
=========================================================================
{{name}} Memory Map
=========================================================================

{% for sec_name, sec_values in sections.iteritems() %}

{{sec_name}}
---------------------------------------------------------

.. list-table::
   :widths: 10 5 5 15 55
   :header-rows: 1

   *   - Address
       - Bits
       - Mode
       - Shortname
       - What
   {% for val in sec_values %}
   *   - ``{{ val.addr_pp() }}``
       - {{ val.bits }}
       - ``{{ val.mode }}``
       - {{ val.slug }}
       - {{ val.description }}
   {% endfor %}

{% endfor %}