Index: soft/giet_vm/giet_python/genmap
===================================================================
--- soft/giet_vm/giet_python/genmap	(revision 591)
+++ soft/giet_vm/giet_python/genmap	(revision 673)
@@ -37,4 +37,5 @@
 # - gameoflife
 # - ocean
+# - raycast
 # - router 
 # - sort 
@@ -132,4 +133,8 @@
                    default = False,
                    help = 'map the "ocean" application for the GietVM' )
+
+parser.add_option( '--raycast', action = 'store_true', dest = 'raycast',     
+                   default = False,
+                   help = 'map the "raycast" application for the GietVM' )
 
 parser.add_option( '--router', action = 'store_true', dest = 'router',     
@@ -181,4 +186,5 @@
 map_gameoflife = options.gameoflife  # map "gameoflife" application if True
 map_ocean      = options.ocean       # map "ocean" application if True
+map_raycast    = options.raycast     # map "raycast" application if True
 map_router     = options.router      # map "router" application if True
 map_shell      = options.shell       # map "shell" application if True
@@ -243,4 +249,9 @@
     print '[genmap] application "ocean" will be loaded'
 
+if ( map_raycast ):      
+    appli = __import__( 'raycast' )
+    appli.extend( mapping )
+    print '[genmap] application "raycast" will be loaded'
+
 if ( map_router ):      
     appli = __import__( 'router' )
