Changes between Version 6 and Version 7 of mapping_info


Ignore:
Timestamp:
Oct 26, 2014, 1:14:59 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mapping_info

    v6 v7  
    3838The ''map.bin'' file must be stored on disk and will be loaded  in memory by the GIET_VM bootloader in the ''seg_boot_mapping'' segment.
    3939
    40 == __Python Mapping General__ ==
     40== __Python mapping introduction__ ==
    4141
    4242A specific mapping requires at least two python files:
     
    4646The various Python Classes used by these these files are defined in the [source:soft/giet_vm/giet_python/mapping.py mapping.py] file.
    4747
    48 == Python Architecture description ==
     48== __Python architecture description__ ==
    4949
    5050To define an architecture, you must use the following constructors:
     
    8383|| arg          || optionnal argument depending on peripheral type ||
    8484
    85 The Peripheral types are defined in the [source:soft/giet_vm/giet_xml/mapping_info.h mapping_info.h] and [source:soft/giet_vm/giet_python/mapping.py mapping.py] files.
     85The supported peripheral types and subtypes are defined in the [source:soft/giet_vm/giet_xml/mapping_info.h mapping_info.h] and [source:soft/giet_vm/giet_python/mapping.py mapping.py] files.
    8686
    8787=== Construct physical memory banks ===
     
    8989The ''mapping.addRam( )'' construct adds one physical memory bank, and the associated physical segment. It has the following arguments:
    9090
    91 == Application description : appli.py ===
     91== __Python application description__ ==