Index: soft/giet_vm/giet_python/genmap
===================================================================
--- soft/giet_vm/giet_python/genmap	(revision 565)
+++ soft/giet_vm/giet_python/genmap	(revision 580)
@@ -134,4 +134,8 @@
                    help = 'map the "coproc" application for the GietVM' )
 
+parser.add_option( '--ocean', action = 'store_true', dest = 'ocean',     
+                   default = False,
+                   help = 'map the "ocean" application for the GietVM' )
+
 ###################################################################################
 #   Get command line arguments
@@ -167,4 +171,5 @@
 map_gameoflife = options.gameoflife  # map "gameoflife" application if True
 map_coproc     = options.coproc      # map "coproc" application if True
+map_ocean      = options.ocean       # map "ocean" application if True
 
 ###################################################################################
@@ -230,4 +235,9 @@
     print '[genmap] application "coproc" will be loaded'
 
+if ( map_ocean ):
+    app = __import__( 'ocean' )
+    app.ocean( mapping )
+    print '[genmap] application "ocean" will be loaded'
+
 ###################################################################################
 #   Generate xml file if required.
