Index: trunk/Platforms/Test/Makefile
===================================================================
--- trunk/Platforms/Test/Makefile	(revision 130)
+++ trunk/Platforms/Test/Makefile	(revision 131)
@@ -76,5 +76,7 @@
 OBJECTS				=	$(patsubst $(PATH_SRC)/%.cpp,$(PATH_OBJ)/%.o,$(SOURCES))
 LOGS				=	$(patsubst $(PATH_DATA)/%.cfg,$(PATH_LOG)/%.log,$(wildcard $(PATH_DATA)/$(DATA)/*.cfg))
-EXEC				=	$(PATH_BIN)/soft.x
+
+BIN				=	Platforms_Test.x
+EXEC				=	$(PATH_BIN)/$(BIN)
 EXEC_PREFIX			=	$(NICE) -n $(PRIORITY) 
 # $(VALGRIND)
Index: trunk/Platforms/Test/src/test.cpp
===================================================================
--- trunk/Platforms/Test/src/test.cpp	(revision 130)
+++ trunk/Platforms/Test/src/test.cpp	(revision 131)
@@ -322,5 +322,6 @@
   //==============================================================================
 
-  sc_clock              *  CLOCK  = new sc_clock ("clock", 1.0, 0.5);	 
+  sc_time period (TIME_PERIOD, TIME_UNIT);
+  sc_clock              *  CLOCK  = new sc_clock ("clock", period);	 
   sc_signal<Tcontrol_t> *  NRESET = new sc_signal<Tcontrol_t> ("NRESET");
 
@@ -487,7 +488,9 @@
 
   // initialisation
+ 
   cerr << "<test> Simulation Init" << endl;
 
-  sc_start(0);
+//   sc_time t (0, TIME_UNIT);
+//   sc_start(t);
 
   cerr << "<test> Simulation Start" << endl;
