Changes between Version 6 and Version 7 of mapping_info
- Timestamp:
- Oct 26, 2014, 1:14:59 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
mapping_info
v6 v7 38 38 The ''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. 39 39 40 == __Python Mapping General__ ==40 == __Python mapping introduction__ == 41 41 42 42 A specific mapping requires at least two python files: … … 46 46 The various Python Classes used by these these files are defined in the [source:soft/giet_vm/giet_python/mapping.py mapping.py] file. 47 47 48 == Python Architecture description==48 == __Python architecture description__ == 49 49 50 50 To define an architecture, you must use the following constructors: … … 83 83 || arg || optionnal argument depending on peripheral type || 84 84 85 The Peripheraltypes 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.85 The 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. 86 86 87 87 === Construct physical memory banks === … … 89 89 The ''mapping.addRam( )'' construct adds one physical memory bank, and the associated physical segment. It has the following arguments: 90 90 91 == Application description : appli.py ===91 == __Python application description__ ==