Changeset 673 for soft/giet_vm/giet_python
- Timestamp:
- Jul 28, 2015, 1:27:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r591 r673 37 37 # - gameoflife 38 38 # - ocean 39 # - raycast 39 40 # - router 40 41 # - sort … … 132 133 default = False, 133 134 help = 'map the "ocean" application for the GietVM' ) 135 136 parser.add_option( '--raycast', action = 'store_true', dest = 'raycast', 137 default = False, 138 help = 'map the "raycast" application for the GietVM' ) 134 139 135 140 parser.add_option( '--router', action = 'store_true', dest = 'router', … … 181 186 map_gameoflife = options.gameoflife # map "gameoflife" application if True 182 187 map_ocean = options.ocean # map "ocean" application if True 188 map_raycast = options.raycast # map "raycast" application if True 183 189 map_router = options.router # map "router" application if True 184 190 map_shell = options.shell # map "shell" application if True … … 243 249 print '[genmap] application "ocean" will be loaded' 244 250 251 if ( map_raycast ): 252 appli = __import__( 'raycast' ) 253 appli.extend( mapping ) 254 print '[genmap] application "raycast" will be loaded' 255 245 256 if ( map_router ): 246 257 appli = __import__( 'router' )
Note: See TracChangeset
for help on using the changeset viewer.