Changeset 580 for soft/giet_vm/giet_python/genmap
- Timestamp:
- May 28, 2015, 3:34:23 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r565 r580 134 134 help = 'map the "coproc" application for the GietVM' ) 135 135 136 parser.add_option( '--ocean', action = 'store_true', dest = 'ocean', 137 default = False, 138 help = 'map the "ocean" application for the GietVM' ) 139 136 140 ################################################################################### 137 141 # Get command line arguments … … 167 171 map_gameoflife = options.gameoflife # map "gameoflife" application if True 168 172 map_coproc = options.coproc # map "coproc" application if True 173 map_ocean = options.ocean # map "ocean" application if True 169 174 170 175 ################################################################################### … … 230 235 print '[genmap] application "coproc" will be loaded' 231 236 237 if ( map_ocean ): 238 app = __import__( 'ocean' ) 239 app.ocean( mapping ) 240 print '[genmap] application "ocean" will be loaded' 241 232 242 ################################################################################### 233 243 # Generate xml file if required.
Note: See TracChangeset
for help on using the changeset viewer.