Changeset 729 for soft/giet_vm
- Timestamp:
- Nov 21, 2015, 2:55:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r673 r729 36 36 # - display 37 37 # - gameoflife 38 # - mjpeg 38 39 # - ocean 39 40 # - raycast … … 130 131 help = 'map the "gameoflife" application for the GietVM' ) 131 132 133 parser.add_option( '--mjpeg', action = 'store_true', dest = 'mjpeg', 134 default = False, 135 help = 'map the "mjpeg" application for the GietVM' ) 136 132 137 parser.add_option( '--ocean', action = 'store_true', dest = 'ocean', 133 138 default = False, … … 185 190 map_display = options.display # map "display" application if True 186 191 map_gameoflife = options.gameoflife # map "gameoflife" application if True 192 map_mjpeg = options.mjpeg # map "mjpeg" application if True 187 193 map_ocean = options.ocean # map "ocean" application if True 188 194 map_raycast = options.raycast # map "raycast" application if True … … 244 250 print '[genmap] application "gameoflife" will be loaded' 245 251 252 if ( map_mjpeg ): 253 appli = __import__( 'mjpeg' ) 254 appli.extend( mapping ) 255 print '[genmap] application "mjpeg" will be loaded' 256 246 257 if ( map_ocean ): 247 258 appli = __import__( 'ocean' )
Note: See TracChangeset
for help on using the changeset viewer.