Changeset 589 for soft/giet_vm/applications/classif/classif.py
- Timestamp:
- Jul 8, 2015, 3:57:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/classif/classif.py
r533 r589 4 4 5 5 ################################################################################### 6 # file : classif.py 6 # file : classif.py 7 7 # date : november 2014 8 8 # author : Alain Greiner … … 30 30 ################################################################################## 31 31 32 ###################### ###33 def classif( mapping ):32 ###################### 33 def extend( mapping ): 34 34 35 35 x_size = mapping.x_size … … 60 60 mapping.addVseg( vspace, 'classif_data', data_base , data_size, 61 61 'C_WU', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM', 62 binpath = 'build/classif/ classif.elf',62 binpath = 'build/classif/appli.elf', 63 63 local = False ) 64 64 … … 84 84 code_base , code_size, 85 85 'CXWU', vtype = 'ELF', x = x, y = y, pseg = 'RAM', 86 binpath = 'build/classif/ classif.elf',86 binpath = 'build/classif/appli.elf', 87 87 local = True ) 88 88 … … 133 133 if __name__ == '__main__': 134 134 135 vspace = classif( Mapping( 'test', 2, 2, 4 ) )135 vspace = extend( Mapping( 'test', 2, 2, 4 ) ) 136 136 print vspace.xml() 137 137
Note: See TracChangeset
for help on using the changeset viewer.