Changeset 589 for soft/giet_vm/applications/ocean/ocean.py
- Timestamp:
- Jul 8, 2015, 3:57:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/ocean/ocean.py
r581 r589 27 27 28 28 ######################### 29 def ocean( mapping ):29 def extend( mapping ): 30 30 31 31 x_size = mapping.x_size … … 57 57 mapping.addVseg( vspace, 'ocean_data', data_base , data_size, 58 58 'C_WU', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM', 59 binpath = 'build/ocean/ ocean.elf',59 binpath = 'build/ocean/appli.elf', 60 60 local = False ) 61 61 … … 69 69 code_base , code_size, 70 70 'CXWU', vtype = 'ELF', x = x, y = y, pseg = 'RAM', 71 binpath = 'build/ocean/ ocean.elf',71 binpath = 'build/ocean/appli.elf', 72 72 local = True ) 73 73 … … 135 135 if __name__ == '__main__': 136 136 137 vspace = ocean( Mapping( 'test', 2, 2, 4 ) )137 vspace = extend( Mapping( 'test', 2, 2, 4 ) ) 138 138 print vspace.xml() 139 139
Note: See TracChangeset
for help on using the changeset viewer.