Index: soft/giet_vm/giet_python/genmap
===================================================================
--- soft/giet_vm/giet_python/genmap	(revision 500)
+++ soft/giet_vm/giet_python/genmap	(revision 520)
@@ -6,8 +6,8 @@
 #   author : Alain Greiner
 #######################################################################################
-# This generic script maps one or several multi-tasks applications on a specific 
+# This generic script maps one or several applications on a specific 
 # instance of the multi-processors/multi-clusters TSAR architecture. 
 # It generates the files required for hardware and software compilation:
-# 1) The "hard_config.h" file is used to generate the top.cppnetbsd file (hardware),
+# 1) The "hard_config.h" file is used to generate the top.cpp file (hardware),
 #    and to compile the tsar_preloader.elf, the GietVM boot.elf and kernel.elf files.
 # 2) The optionals "map.bin" and vsegs.ld" files are used to configure the GietVM.
@@ -27,4 +27,5 @@
 # - tsar_generic_iob
 # - tsar_generic_leti
+# - tsar_geberic_mwmr
 #######################################################################################
 # The supported applications are:
@@ -36,4 +37,5 @@
 # - display
 # - gameoflife
+# - coproc
 #######################################################################################
 
@@ -123,4 +125,8 @@
                    default = False,
                    help = 'map the "gameoflife" application for the GietVM' )
+
+parser.add_option( '--coproc', action = 'store_true', dest = 'coproc',     
+                   default = False,
+                   help = 'map the "coproc" application for the GietVM' )
 
 ######################################################################################
@@ -155,4 +161,5 @@
 map_classif    = options.classif     # map "classif" application if True
 map_gameoflife = options.gameoflife  # map "gameoflife" application if True
+map_coproc     = options.coproc      # map "coproc" application if True
 
 ######################################################################################
@@ -213,4 +220,9 @@
     print '[genmap] application "gameoflife" will be loaded'
 
+if ( map_coproc ):
+    app = __import__( 'coproc' )
+    app.coproc( mapping )
+    print '[genmap] application "coproc" will be loaded'
+
 ######################################################################################
 #   Generate xml file if required.
