Ignore:
Timestamp:
Jul 8, 2015, 3:57:15 PM (9 years ago)
Author:
alain
Message:

Modify all applications to support two new rules:
1) introduce a local Makefile for each application.
2) change "application.elf" name to "application/appli.elf" name in the application.py" file.
Introduce the shell application.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/classif/classif.py

    r533 r589  
    44
    55###################################################################################
    6 #   file   : classif.py  
     6#   file   : classif.py
    77#   date   : november 2014
    88#   author : Alain Greiner
     
    3030##################################################################################
    3131
    32 #########################
    33 def classif( mapping ):
     32######################
     33def extend( mapping ):
    3434
    3535    x_size    = mapping.x_size
     
    6060    mapping.addVseg( vspace, 'classif_data', data_base , data_size,
    6161                     'C_WU', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM',
    62                      binpath = 'build/classif/classif.elf',
     62                     binpath = 'build/classif/appli.elf',
    6363                     local = False )
    6464
     
    8484                                 code_base , code_size,
    8585                                 'CXWU', vtype = 'ELF', x = x, y = y, pseg = 'RAM',
    86                                  binpath = 'build/classif/classif.elf',
     86                                 binpath = 'build/classif/appli.elf',
    8787                                 local = True )
    8888
     
    133133if __name__ == '__main__':
    134134
    135     vspace = classif( Mapping( 'test', 2, 2, 4 ) )
     135    vspace = extend( Mapping( 'test', 2, 2, 4 ) )
    136136    print vspace.xml()
    137137
Note: See TracChangeset for help on using the changeset viewer.