Index: /soft/giet_vm/giet_python/genmap
===================================================================
--- /soft/giet_vm/giet_python/genmap	(revision 736)
+++ /soft/giet_vm/giet_python/genmap	(revision 737)
@@ -83,4 +83,8 @@
                    help = 'define type of IOC: BDV / HBA / SDC / RDK / SPI' )
 
+parser.add_option( '--mwr', type = 'string', dest = 'mwr_type',
+                   default = 'CPY',
+                   help = 'define type of COPROC: CPY / DCT / GCD' )
+
 parser.add_option( '--v', action = 'store_true', dest = 'verbose',
                    default = False,
@@ -171,4 +175,5 @@
 fbf_size       = options.fbf_size    # frame buffer width & heigth
 ioc_type       = options.ioc_type    # ioc controller type
+mwr_type       = options.mwr_type    # hardware coprocessor type
 
 verbose        = options.verbose     # report on map.bin generation if True
@@ -213,5 +218,5 @@
 
 # build mapping calling the function (function name)
-mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type )
+mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type, mwr_type )
 print '[genmap] platform %s build' % mapping.name 
 
Index: /soft/giet_vm/giet_python/mapping.py
===================================================================
--- /soft/giet_vm/giet_python/mapping.py	(revision 736)
+++ /soft/giet_vm/giet_python/mapping.py	(revision 737)
@@ -74,7 +74,7 @@
 
 MWRSUBTYPES =    [
+                  'CPY',
                   'GCD',
                   'DCT',
-                  'CPY',
                  ]
    
