Changeset 589 for soft/giet_vm/applications/convol/convol.py
- Timestamp:
- Jul 8, 2015, 3:57:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/convol/convol.py
r502 r589 4 4 5 5 ###################################################################################### 6 # file : convol.py (for the convol application)6 # file : convol.py 7 7 # date : may 2014 8 8 # author : Alain Greiner … … 27 27 28 28 ###################### 29 def convol( mapping ):29 def extend( mapping ): 30 30 31 31 x_size = mapping.x_size … … 54 54 mapping.addVseg( vspace, 'conv_data', data_base , data_size, 55 55 'C_WU', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM', 56 binpath = 'build/convol/ convol.elf',56 binpath = 'build/convol/appli.elf', 57 57 local = False ) 58 58 … … 67 67 mapping.addVseg( vspace, 'conv_code_%d_%d' % (x,y), base, size, 68 68 'CXWU', vtype = 'ELF', x = x , y = y , pseg = 'RAM', 69 binpath = 'build/convol/ convol.elf',69 binpath = 'build/convol/appli.elf', 70 70 local = True ) 71 71 … … 119 119 if __name__ == '__main__': 120 120 121 vspace = convol( Mapping( 'test', 2, 2, 4 ) )121 vspace = extend( Mapping( 'test', 2, 2, 4 ) ) 122 122 print vspace.xml() 123 123
Note: See TracChangeset
for help on using the changeset viewer.