Changeset 772 for soft/giet_vm/giet_python/genmap
- Timestamp:
- Feb 3, 2016, 9:59:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r753 r772 40 40 # - raycast 41 41 # - router 42 # - rosenfeld 42 43 # - sort 43 44 # - shell … … 151 152 default = False, 152 153 help = 'map the "router" application for the GietVM' ) 154 155 parser.add_option( '--rosenfeld', action = 'store_true', dest = 'rosenfeld', 156 default = False, 157 help = 'map the "rosenfeld" application for the GietVM' ) 153 158 154 159 parser.add_option( '--shell', action = 'store_true', dest = 'shell', … … 204 209 map_raycast = options.raycast # map "raycast" application if True 205 210 map_router = options.router # map "router" application if True 211 map_rosenfeld = options.rosenfeld # map "rosenfeld" application if True 206 212 map_shell = options.shell # map "shell" application if True 207 213 map_sort = options.sort # map "sort" application if True … … 281 287 print '[genmap] application "router" will be loaded' 282 288 289 if ( map_rosenfeld ): 290 appli = __import__( 'rosenfeld' ) 291 appli.extend( mapping ) 292 print '[genmap] application "rosenfeld" will be loaded' 293 283 294 if ( map_shell ): 284 295 appli = __import__( 'shell' )
Note: See TracChangeset
for help on using the changeset viewer.